-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path4_Findpassword.html
More file actions
82 lines (73 loc) · 2.37 KB
/
Copy path4_Findpassword.html
File metadata and controls
82 lines (73 loc) · 2.37 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FindPassword_input</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<style>
footer{
font-size: 80%;
background-color: #e6eaaa;
text-align: right;
margin: auto;
padding: 5px;
position: relative;
height: 25px;
}
h2{
text-align :center;
font-weight: bold;
}
.btn{
background-color: #ff8868;
width:15%;
font-size: 18px;
font-weight: bold;
height:auto;
text-align:center;
}
.container{
width: 100%;
}
p{
font-size: 25px;
text-align: center
}
#userid{
width:520px;
text-align: center;
border-radius: 20px;
border: 1px solid deepskyblue;
}
#useremail{
width: 520px;
text-align: center;
border-radius: 20px;
border: 1px solid deepskyblue;
}
</style>
</head>
<body>
<span style="line-height: 250px;"><br></span>
<div class="container">
<form action="cgi-bin/formsample.cgi" method="post">
<p>   학 번 : <input type="text" name="userid" id="userid"
placeholder="Enter ID" required> </p>
<p> E-mail : <input type="email" name="useremail" id="useremail"
placeholder="Enter Password" required></p>
</form>
</div>
<span style="line-height: 210px"><br></span>
<div class="container" align="center">
<button type="button" class="btn btn-danger"><a href="5_Findpassword.html" style="color: white;">비밀번호찾기</a></button>
</div>
<span style="line-height: 35px"><br></span>
<footer id="footer">
<div class="pull-left" > 가천대학교 산업경영공학과</div>
<div class="pull-right">Copyright (c) da_capo </div>
</footer>
</body>
</html>