-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin2.php
98 lines (80 loc) · 1.78 KB
/
admin2.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
96
97
98
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body
{
background-image:url("b1.jpeg");
}
.center
{
display: block;
margin-left: 550px;
margin-right: 150px;
margin-top:300px;
width: 100%;
}
.button
{
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
#rcorners1
{
border-radius: 25px;
padding: 20px;
width: 200px;
height: 100px;
}
.button1:hover
{
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
#rcorners2
{
border-radius: 25px;
padding: 20px;
width: 140px;
height: 60px;
}
.buttons
{
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 35px 52px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin: 4px 2px;
cursor: pointer;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
s
{
margin-top:1%;
}
</style>
</head>
<body>
<s>
<button class="buttons button1" id="rcorners2" onclick="location.href='screen2.php'">Home</button>
</s>
<div class="center">
<button class="button button1" id="rcorners1" onclick="location.href='admin3.php'">HEAD OF DEPARTMENT</button>
<button class="button button1" id="rcorners1"onclick="location.href='admin4.php'">DEPARTMENT DETAILS</button>
</div>
</body>
</html>