-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdminHome.aspx
94 lines (78 loc) · 2.59 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
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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="AdminHome.aspx.cs" Inherits="AdminHome" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<title>Admin Home</title>
<style>
.icons
{
width:18px;
height:18px;
}
.profile
{
display:inline-block;
width: 300px;
padding: 4% 0 0;
position: relative;
z-index: 1;
background: #FFFFFF;
max-width: 300px;
padding: 20px;
text-align:center;
margin-top: 20px;
margin-left:20px;
margin-right:20px;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.hyperlink{
font-size:16px;
font-weight:bolder;
color:black;
}
h3{
font-weight:bold;
}
.custImg
{
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div style="margin-left:165px">
<div class="profile">
<h3>Customer</h3>
<br />
<img src="Images/customer.ico" class="custImg"/>
<br />
<br />
<img src="Images/edit.ico" class="icons" />
<asp:HyperLink Text="Manage Customer" NavigateUrl="~/DeleteCustomer.aspx" runat="server" CssClass="hyperlink"></asp:HyperLink>
<br />
<br />
</div>
<div class="profile">
<h3>Employee</h3>
<br />
<img src="Images/employee.ico" />
<br />
<br />
<img src="Images/add.ico" class="icons" />
<asp:HyperLink Text="Add Employee" NavigateUrl="~/AddEmloyee.aspx" runat="server" CssClass="hyperlink"></asp:HyperLink>
<br />
<img src="Images/edit.ico" class="icons" />
<asp:HyperLink Text="Manage Employee" NavigateUrl="~/DeleteEmployee.aspx" runat="server" CssClass="hyperlink"></asp:HyperLink>
</div>
<div class="profile">
<h3>Agency</h3>
<br />
<img src="Images/agent.ico" />
<br />
<br />
<img src="Images/add.ico" class="icons" />
<asp:HyperLink Text="Add Agency" NavigateUrl="~/AddAgency.aspx" runat="server" CssClass="hyperlink"></asp:HyperLink>
<br />
<img src="Images/edit.ico" class="icons" />
<asp:HyperLink Text="Manage Agency" NavigateUrl="~/DeleteAgency.aspx" runat="server" CssClass="hyperlink"></asp:HyperLink>
</div>
</div>
</asp:Content>