1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
JEE_Project/build/web/WEB-INF/jsp/menu.jsp

40 lines
1.5 KiB
Text
Raw Normal View History

2022-06-27 21:14:35 +02:00
<%--
Document : menu
Created on : 4 mars 2018, 16:59:09
Author : faycal
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Menu</title>
</head>
<body>
<%@include file="header.jsp" %>
<h1>choisissez une opération dans la liste suivante</h1>
2022-06-29 23:15:25 +02:00
<form name="form" action="list.htm" method="POST">
<input type="submit" value="Customers" /> <br />
<input hidden type="text" name="type" value="customer" />
</form>
<form name="form" action="list.htm" method="POST">
<input type="submit" value="Products" /> <br />
<input hidden type="text" name="type" value="product" />
</form>
<form name="form" action="list.htm" method="POST">
<input type="submit" value="Purchases" /> <br />
<input hidden type="text" name="type" value="purchase" />
</form>
<form name="form" action="list.htm" method="POST">
<input type="submit" value="Discount codes" /> <br />
<input hidden type="text" name="type" value="discount" />
</form>
<form name="form" action="list.htm" method="POST">
<input type="submit" value="Products Code" /> <br />
<input hidden type="text" name="type" value="prodCode" />
2022-06-27 21:14:35 +02:00
</form>
</body>
</html>