-
Notifications
You must be signed in to change notification settings - Fork 0
/
LandingPage.aspx
63 lines (60 loc) · 2.37 KB
/
LandingPage.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LandingPage.aspx.cs" Inherits="Proj1.LandingPage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous"/>
<style>
body{
background-image:linear-gradient(to right, #3376ac, #0a3366);
margin-top: 150px !important;
}
.image{
width: 150px;
height: 150px;
overflow: hidden;
}
.image:hover{
opacity: .5;
}
.col-md-6{
text-align: center;
}
.a{
color: antiquewhite;
font-size: 20px;
font-weight: bold;
text-decoration: none;
}
.a:hover{
color: bisque;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12" offset="md-1">
<form id="form1" runat="server">
<div>
<div class="row">
<div class="col-md-6" >
<asp:ImageButton ID="admin" class="image" runat="server"
ImageUrl="~/icons/iconadmin.png" PostBackUrl="~/Admin/AdminLogin.aspx" />
<br /><asp:HyperLink ID="HyperLink1" class="a" runat="server"
NavigateUrl="~/Admin/AdminLogin.aspx">Administrator</asp:HyperLink>
</div>
<div class="col-md-6">
<asp:ImageButton ID="user" class="image" runat="server"
ImageUrl="~/icons/user.png" PostBackUrl="~/User/LoginPage.aspx" />
<br /><asp:HyperLink ID="HyperLink2" class="a" runat="server"
NavigateUrl="~/User/LoginPage.aspx">User</asp:HyperLink>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>