-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
95 lines (80 loc) · 2.86 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>MSIS Main Page</title>
<link rel="stylesheet" type="text/css" href="css/loginstyle.css" />
<style>
.myButton {
-moz-box-shadow:inset 0px 1px 0px 0px #dcecfb;
-webkit-box-shadow:inset 0px 1px 0px 0px #dcecfb;
box-shadow:inset 0px 1px 0px 0px #dcecfb;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bddbfa), color-stop(1, #80b5ea));
background:-moz-linear-gradient(top, #bddbfa 5%, #80b5ea 100%);
background:-webkit-linear-gradient(top, #bddbfa 5%, #80b5ea 100%);
background:-o-linear-gradient(top, #bddbfa 5%, #80b5ea 100%);
background:-ms-linear-gradient(top, #bddbfa 5%, #80b5ea 100%);
background:linear-gradient(to bottom, #bddbfa 5%, #80b5ea 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bddbfa', endColorstr='#80b5ea',GradientType=0);
background-color:#bddbfa;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #84bbf3;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #528ecc;
}
.myButton:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #80b5ea), color-stop(1, #bddbfa));
background:-moz-linear-gradient(top, #80b5ea 5%, #bddbfa 100%);
background:-webkit-linear-gradient(top, #80b5ea 5%, #bddbfa 100%);
background:-o-linear-gradient(top, #80b5ea 5%, #bddbfa 100%);
background:-ms-linear-gradient(top, #80b5ea 5%, #bddbfa 100%);
background:linear-gradient(to bottom, #80b5ea 5%, #bddbfa 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80b5ea', endColorstr='#bddbfa',GradientType=0);
background-color:#80b5ea;
}
.myButton:active {
position:relative;
top:1px;
}
</style>
<link rel="shortcut icon" href="images/favicon.ico" /><!-- inserting the favicon for the site -->
</head>
<body>
<div class="container">
<br/><br/><br/>
<br/>
<header>
<img src="images/black-logo-msis.png"> <!--Heading of the Page -->
<br/><br/><br/>
<img src="images/logoDetails.png"> <!--Heading of the Page -->
<br/><br/>
<br/><br/><br/>
<br/><br/>
<table border="0" style=" width: 600px; margin-left: auto; margin-right: auto;">
<tr>
<td colspan="4">
</td>
</tr>
<tr>
<td colspan> </td>
</tr>
<tr>
<td>
<a href="studentlogin.php"><button type="button" class="myButton">Student Console</button></a>
<a href="monitorlogin.php"><button type="button" class="myButton">Teacher Console</button></a>
</td>
</tr>
</table>
</header>
</div>
</body>
</html>