forked from ParkJeongseop/AuthAutoFill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
90 lines (78 loc) · 3.9 KB
/
popup.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
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
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css" rel="stylesheet"
type='text/css'>
<script src="script.js"></script>
<style>
body {
height: auto;
width: 400px;
padding: 1.5rem;
}
</style>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="onoffswitch">
<label id="auth_toggle" class="custom-control-label" for="onoffswitch" style="font-size: large;font-weight: bold;">본인인증 자동완성 ON/OFF</label>
</div>
<div class="profiles">
<ul id='profilesUL' class="list-group">
</ul>
</div>
<br>
<hr>
<div class="addProfileDiv">
<h5 id='add_profile_header'>프로필 추가</h5>
<div class="input-group mb-3">
<input id='name' type="text" class="form-control" placeholder="이름" aria-label="Username"
aria-describedby="basic-addon1" required="required">
</div>
<div class="input-group mb-3">
<select id='carrier' class="custom-select" id="inputGroupSelect04"
aria-label="Example select with button addon">
<option id="op_carrier" value="-1" selected>통신사</option>
<option id="op_skt" value="1">SKT</option>
<option id="op_kt" value="2">KT</option>
<option id="op_lgu" value="3">LGU+</option>
<option id="op_skt_mvno" value="4">SKT망 알뜰폰</option>
<option id="op_kt_mvno" value="5">KT망 알뜰폰</option>
<option id="op_lgu_mvno" value="6">LGU+망 알뜰폰</option>
</select>
<input id='phone_number' type="number" class="form-control" placeholder="휴대폰번호 ('-'없이숫자만입력)"
aria-label="Username" aria-describedby="basic-addon1" minlength="10" maxlength="11" min="0">
</div>
<div class="input-group mb-3">
<input id='birth' type="number" class="form-control" placeholder="생년월일 (8자리)" aria-label="Username"
aria-describedby="basic-addon1" minlength="8" maxlength="8">
</div>
<div class="input-group mb-3">
<select id='foreigner' class="custom-select" id="inputGroupSelect04"
aria-label="Example select with button addon">
<option id="op_citizen" value="0">내국인</option>
<option id="op_foreigner" value="1">외국인</option>
</select>
<select id='gender' class="custom-select" id="inputGroupSelect04"
aria-label="Example select with button addon" required>
<option id="op_gender" value="-1" selected>성별</option>
<option id="op_male" value="1">남성</option>
<option id="op_female" value="2">여성</option>
</select>
</div>
<div class="input-group mb-3">
<select id='way' class="custom-select" id="inputGroupSelect04"
aria-label="Example select with button addon">
<option id="op_method" value="-1" selected>인증방식</option>
<option id="op_sms" value="1">SMS</option>
<option id="op_pass" value="2">통신사 PASS앱</option>
</select>
</div>
<button id='addProfile' type="button" class="btn btn-light">프로필 추가</button>
</div>
</body>
</html>