25 lines
860 B
Text
25 lines
860 B
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" method="POST">
|
|
<input type="submit" formaction="purchase.htm" value="Ventes" /> <br />
|
|
<input type="submit" formaction="product.htm" value="Produits" /> <br />
|
|
<input type="submit" formaction="discount.htm" value="Références produits" /> <br />
|
|
<input type="submit" formaction="customer.htm" value="Clients" />
|
|
</form>
|
|
</body>
|
|
</html>
|