-
Notifications
You must be signed in to change notification settings - Fork 0
/
authenticationComplete.html
44 lines (44 loc) · 1.89 KB
/
authenticationComplete.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/bootstrap-5.0.2/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>authenticationComplete</title>
</head>
<body>
<div class="container">
<div id = "header">
<div class="logo">
<img src="assets/src/O'were 로고.svg" style="width: 190px;">
</div>
<div class="order">
<hr class="line">
<span class="circle1" id="blank">1</span>
<span class="circle2" id="full">2</span>
<span class="circle3" id="blank">3</span>
<span class="circle4" id="blank">4</span>
</div>
</div>
<h2 style="font-weight: bold;">실명인증</h2>
<div id = "authenticationCompleteContent">
<div class=partyEmoji style='font-size:200px;'>🎉</div>
<h2>인증이 완료되었습니다!</h2>
</div>
<div class="btn-bottom">
<button class="back" onclick="location.href='authentication.html'">
<i class ="material-icons md-18">arrow_back_ios</i>
<span class="text">이전</span>
</button>
<button class="next" onclick="location.href='agree.html'">
<span class="text">다음</span>
<i class ="material-icons md-18">arrow_forward_ios</i>
</button>
</div>
</div>
</body>
</html>