39 lines
1.5 KiB
Text
39 lines
1.5 KiB
Text
<%--
|
|
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>
|
|
|
|
<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" />
|
|
</form>
|
|
</body>
|
|
</html>
|