-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
72 lines (66 loc) · 1.25 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
<!Doctype html>
<html>
<head>
<meta charset="utf-8">
<title>MY REPORT</title>
<style media="screen">
form.container{
width: 70%;
height: 70%;
margin: 40px auto;
background: none;
}
.outer {
display: table;
width: 100%;
height: 100%;
}
.inner {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.centered {
position: relative;
display: inline-block;
width: 50%;
padding: 1em;
background: white;
color: blue;
}
input[type="text"]{
border: 2px solid blue;
border-bottom: 2px solid blue;
width: 90%;
height: 40px;
font-size: 35px;
}
h1{
font-size: 700%;
}
input[type="submit"]{
background-color: blue;
border: none;
color: white;
padding: 8px 16px;
text-decoration: none;
margin: 30px 2px;
cursor: pointer;
font-size: 25px;
}
</style>
</head>
<body>
<form class="container" action="login.php" method="post">
<div class="outer">
<div class="inner">
<div class="centered">
<h1>N</h1>
<p><input type="text" name="student_id" value="" autocomplete="off" ></p>
<p><input type="submit" name="login" value="접속" ></p>
</div>
</div>
</div>
</form>
</body>
</html>