-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.php
69 lines (46 loc) · 1.34 KB
/
student.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/jpg" href="image/pro.png">
<style>
@import url(css/font.css);
@import url(css/font-awesome.min.css);
.login-page {
width: 520px;
height: auto;
padding: 20% 0 0;
margin: auto;
font-family: cursive;
color: white;
}
.form {
position: relative;
z-index: 1;
background-image: url(image/board.png);
background-repeat: no-repeat;
background-size: 100% 100%;
min-height: 50px;
max-width: 550px;
margin: 0 0 100px;
padding: 20px;
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/stu.png);
background-repeat: no-repeat;
background-size: 100% 125%;
}
</style>
</head>
<body>
<?php include('/stunav.php'); ?>
<div>
</div>
<div class="login-page">
<div class="form">
<span id="login-page"> <?php include('/selectstu.php'); ?> </span>
</div>
</div>
</body>
</html>