forked from mehta96aayushi/Online-Food-Ordering-System
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUpdate_Menu.aspx
More file actions
112 lines (80 loc) · 3.38 KB
/
Update_Menu.aspx
File metadata and controls
112 lines (80 loc) · 3.38 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Update_Menu.aspx.cs" Inherits="OFOS.Update_Menu" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head runat="server">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, shrink-to-fit=no, initial-scale=1"/>
<meta name="description" content=""/>
<meta name="author" content=""/>
<title>Update Menu</title>
<!-- Bootstrap Core CSS -->
<link href="sidebar/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="sidebar/css/simple-sidebar.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<font color="#3DFF33"><u><b>ADMIN FEATURES</b></u></font>
</li>
<li>
<a href="Update_Menu.aspx">Update Menu</a>
</li>
<li>
<a href="Manage_COD.aspx">Manage COD</a>
</li>
<li>
<a href="Review_fb.aspx">Review Feedback</a>
</li>
<li>
<a href="AdminSearch.aspx">Search</a>
</li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<form id="form1" runat="server">
<p style="margin-left:950px">
<asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click" CssClass=" btn-link">LogOut</asp:LinkButton>
</p>
<br />
<center><h1>UPDATE MENU</h1></center>
<p>
</p>
<p>
</p>
<br />
<p style="margin-left: 100px">
<asp:Button ID="Button1" runat="server" CssClass="btn " Height="31px" Text="ADD ITEM(S)" Width="253px" OnClick="Button1_Click" />
</p>
<br />
<p style="margin-left: 100px">
<asp:Button ID="Button2" runat="server" CssClass="btn" Height="31px" Text="MODIFY EXISTING ITEMS" Width="252px" OnClick="Button2_Click" />
</p>
</form>
</div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
<!-- /#wrapper -->
<!-- jQuery -->
<script src="sidebar/js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="sidebar/js/bootstrap.min.js"></script>
</body>
</html>