forked from lethienantran/MenuManagementService
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.aspx
48 lines (48 loc) · 2.3 KB
/
Home.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/SelfOrder.Master" AutoEventWireup="true" CodeBehind="Home.aspx.cs" Inherits="SelfOrderManagementSystem.Home" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<link rel="stylesheet" type="text/css" href="StyleSheet.css" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div align="center">
<asp:Label ID="welcomeLabel" runat="server" Font-Bold="true" Text="" Font-Size="28px" ForeColor="Black"></asp:Label>
<br />
<br />
<asp:Button ID="showMenuButton" runat="server" Text="OPEN MENU" Font-Size="15px" CssClass="roundedButton" ForeColor="White" OnClick="showMenuButton_Click" Height="45px" Width="150px" />
<h3>Add/Change Items</h3>
<table style="border: 1px solid black;">
<tr >
<th>
Category
</th>
<th>
Name
</th>
<th>
Description
</th>
<th>
Price
</th>
</tr>
<tr>
<td>
<asp:TextBox ID="categoryText" placeholder="Enter Category" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="nameText" placeholder="Enter Name" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="descriptionText" placeholder="Enter Description" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="priceText" placeholder="Enter Price" runat="server"></asp:TextBox>
</td>
</tr>
</table>
<asp:Label ID="messageLabel" runat="server" ForeColor="Green"></asp:Label>
<br />
<asp:Button ID="addButton" runat="server" Text="ADD" CssClass="roundedButton" Font-Size="15px" ForeColor="White" OnClick="addButton_Click" Height="45px" Width="150px"/>
<asp:Button ID="deleteButton" runat="server" Text="DELETE" CssClass="roundedButton" Font-Size="15px" ForeColor="White" OnClick="deleteButton_Click" Height="45px" Width="150px"/>
</div>
</asp:Content>