-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditMenu.html
More file actions
35 lines (35 loc) · 1.59 KB
/
EditMenu.html
File metadata and controls
35 lines (35 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html">
<html><head>
<meta charset="utf-8">
<title>MerchantOnboarding -- Edit Menu</title>
<script src="scripts/jquery-1.8.0.min.js"></script>
<script src="scripts/EditMenu.js"></script>
<link rel="stylesheet" href="css/ODOnBoarding.css">
</head>
<body>
<div id="orderdude_logo"><img id="orderdudelogo" src="images/OrderDudeLogo.png" alt="" ></div>
<div id="logout"><a href="http://www.orderdude.com/Logout.html">Logout</a></div>
<div id = "navmenu">
<ul>
<li><a href = "DashBoard.html">Home</a></li>
<li><a href = "EditInfo.html">Information</a></li>
<li><a href = "EditMenu.html">Menu</a></li>
<li><a href = "OrderBoard.html">Order Board</a></li>
</ul>
</div>
<h1>Add Menu</h1>
<!-- <div id="Error"></div> It keeps showing error God knows why-->
<div id="content">
<br />
<div id="help_block">
There are 2 types of instructions accepted <br /><ul><li> Category --> represented in a single line. </li><li>Item details --> represented in format -- item,price, description </li></ul>
<p>For Example<br />Soup<br />Chicken Corn Soup,$5.99,Soup made of chicken in chicken stock<br />Vegetable Soup,$4.00,<br />Hot and Sour Chicken Soup,small = $5.99;large = $10.99,Soup made of chicken in soy sauce<br /><br />Noodles<br />Penang Asam Laksa,$8.95,"hot & sour lai-fun noodles in lemon grass fish broth with fish, onion & pineapple"<br /></p><br />
</div>
<form action="" method="POST">
<textarea name="menu_csv" cols="120" rows="25" id="menu_csv"></textarea><br />
<input type="submit" value="Add Menu" id="bulkmenuadd"/>
</form>
</div>
</body>
<script src="scripts/ODOnboarding_GetMenu.js"></script>
</html>