-
Notifications
You must be signed in to change notification settings - Fork 1
/
page4.html
49 lines (49 loc) · 1.38 KB
/
page4.html
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>이메일 인증</title>
<style>
html, body{
width:300px;
height:600px;
margin: auto;
}
a{
text-decoration:none;
color:black;
font-size:20px;
}
img {
max-width:70%;
height:auto;
}
.prev{
float: left;
}
.next{
float: right;
}
input[type=text]{
border:none;
border-bottom-style:solid;
width:280px;
}
input[type=submit]{
border:none;
background:none;
font-weight: bold;
font-size:20px;
}
</style>
</head>
<body>
<center><img src="trace2.png" alt="TRACE"></center> <!--로고 이미-->
<center><h3>킹고 이메일 인증</h3></center> <!--제목파트-->
<form action="" method="post"> <!--입력받은 인증번호 어디론가 전송해야됨-->
<center><h3><input type="text" placeholder="인증번호" name="verification"></h3></center> <!--인증번호 입력란-->
<h3 class="prev"><a href="page2.html"><이전</a></h3> <!--이전화면으로 가기-->
<h3 class="next"><a href="page5.html"><input type="submit" value="다음>"></a></h3> <!--다음화면으로 가기, 데이터 전송-->
</form>
</body>
</html>