-
Notifications
You must be signed in to change notification settings - Fork 5
/
email.html
31 lines (26 loc) · 1.1 KB
/
email.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./email.css">
<script src="./signup.js"></script>
<title>Email Verification</title>
</head>
<div style="margin-top: 26px;" class="inputTitle"></div>
<div class="inputWrap">
<input type="text" id="emailInput" class="textbox" placeholder="이메일을 입력해 주세요.">
</div>
<button style="margin-top: 13px;" class="verificationButton"
onclick="sendVerificationCode()">이메일 인증</button>
<div style="margin-top: 26px;" class="inputTitle"></div>
<div class="inputWrap">
<input type="text" id="emailInput" class="textbox" placeholder="인증코드를 입력해주세요.">
</div>
<div class="button">
<button class="complete-button" onclick="verifyEmailCode()">완료</button>
</div>
</div>
</div>
</body>
</html>