Fix menu
This commit is contained in:
parent
06190ecb56
commit
7e63863d53
3 changed files with 57 additions and 15 deletions
|
@ -15,11 +15,25 @@
|
||||||
<%@include file="header.jsp" %>
|
<%@include file="header.jsp" %>
|
||||||
<h1>choisissez une opération dans la liste suivante</h1>
|
<h1>choisissez une opération dans la liste suivante</h1>
|
||||||
|
|
||||||
<form name="form" method="POST">
|
<form name="form" action="list.htm" method="POST">
|
||||||
<input type="submit" formaction="purchase.htm" value="Ventes" /> <br />
|
<input type="submit" value="Customers" /> <br />
|
||||||
<input type="submit" formaction="product.htm" value="Produits" /> <br />
|
<input hidden type="text" name="type" value="customer" />
|
||||||
<input type="submit" formaction="discount.htm" value="Références produits" /> <br />
|
</form>
|
||||||
<input type="submit" formaction="customer.htm" value="Clients" />
|
<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>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -15,11 +15,25 @@
|
||||||
<%@include file="header.jsp" %>
|
<%@include file="header.jsp" %>
|
||||||
<h1>choisissez une opération dans la liste suivante</h1>
|
<h1>choisissez une opération dans la liste suivante</h1>
|
||||||
|
|
||||||
<form name="form" method="POST">
|
<form name="form" action="list.htm" method="POST">
|
||||||
<input type="submit" formaction="purchase.htm" value="Ventes" /> <br />
|
<input type="submit" value="Customers" /> <br />
|
||||||
<input type="submit" formaction="product.htm" value="Produits" /> <br />
|
<input hidden type="text" name="type" value="customer" />
|
||||||
<input type="submit" formaction="discount.htm" value="Références produits" /> <br />
|
</form>
|
||||||
<input type="submit" formaction="customer.htm" value="Clients" />
|
<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>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -15,11 +15,25 @@
|
||||||
<%@include file="header.jsp" %>
|
<%@include file="header.jsp" %>
|
||||||
<h1>choisissez une opération dans la liste suivante</h1>
|
<h1>choisissez une opération dans la liste suivante</h1>
|
||||||
|
|
||||||
<form name="form" method="POST">
|
<form name="form" action="list.htm" method="POST">
|
||||||
<input type="submit" formaction="purchase.htm" value="Ventes" /> <br />
|
<input type="submit" value="Customers" /> <br />
|
||||||
<input type="submit" formaction="product.htm" value="Produits" /> <br />
|
<input hidden type="text" name="type" value="customer" />
|
||||||
<input type="submit" formaction="discount.htm" value="Références produits" /> <br />
|
</form>
|
||||||
<input type="submit" formaction="customer.htm" value="Clients" />
|
<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>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Reference in a new issue