-
Notifications
You must be signed in to change notification settings - Fork 0
/
teacher.php
63 lines (45 loc) · 1.22 KB
/
teacher.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/jpg" href="image/pro.png">
<style>
body {
margin: 0;
}
@import url(css/font.css);
@import url(css/font-awesome.min.css);
.login-page {
width: 550px;
padding: 10% 0 0;
margin: auto;
font-family: cursive;
color: red;
}
.form {
position: relative;
z-index: 1;
background: #FFFFFF;
max-width: 500px;
margin: 0 0 0 0;
padding: 20px 40px 20px 40px;
text-align: center;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
body {
background-image: url(image/teacher_back.jpg);
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<?php include('/adminnav.php'); ?>
<div>
</div>
<div class="login-page">
<div class="form">
<span id="login-page"> <?php include('/select.php'); ?> </span>
</div>
</div>
</body>
</html>