forked from lethienantran/MenuManagementService
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AdminHome.aspx
26 lines (25 loc) · 1.16 KB
/
AdminHome.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
<%@ Page Title="" Language="C#" MasterPageFile="~/SelfOrder.Master" AutoEventWireup="true" CodeBehind="AdminHome.aspx.cs" Inherits="SelfOrderManagementSystem.AdminHome" %>
<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">
<table style="margin: 20% auto;">
<tr>
<td>
<asp:Button ID="addButton" runat="server" Text="Add" CssClass="adminHomeButton" ForeColor="White" Height="65px" Width="180px"/>
<br /><br />
</td>
</tr>
<tr>
<td>
<asp:Button ID="changeButton" runat="server" Text="Change" CssClass="adminHomeButton" ForeColor="White" Height="65px" Width="180px"/>
<br /><br />
</td>
</tr>
<tr>
<td>
<asp:Button ID="deleteButton" runat="server" Text="Delete" CssClass="adminHomeButton" ForeColor="White" Height="65px" Width="180px"/>
</td>
</tr>
</table>
</asp:Content>