This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (75 loc) · 3.13 KB
/
index.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
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./sources/favi.png">
<title>DigiID</title>
<meta name="description" content="비공식 디지털 학생증">
</head>
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false"></body>
<script src="index.js"></script>
<link rel="stylesheet" href="style.css"/>
<script src="https://unpkg.com/@zxing/library@latest"></script>
<body>
<div id="load">
<video id="logo" preload="auto" muted autoplay>
<source src="./sources/digiid_icon.mp4">
</video>
<p id="author_hint">by. minG (v1.0)</p>
</div>
<div id="content">
<p id="tilt1">반가워요!</p>
<p id="tilt2">DigiID 발급을 시작합니다.</p>
<p id="sub">한번만 발급하면 재등록 없이 사용 가능해요!</p>
<div id="browser">
<div id="chrome_icon"></div>
<div id="safari_icon"></div>
</div>
<div id="prepare">
<div id="id_icon"></div>
</div>
<div class="vt_al" id="sc_inp">
<input id="sc_lv" type="number" placeholder="" autocomplete="off" enterkeyhint="next">
학년
<input id="sc_cl" type="number" placeholder="" autocomplete="off" enterkeyhint="next">
반
<input id="sc_nm" type="number" placeholder="" autocomplete="off" enterkeyhint="done">
번
</div>
<div id="nm_inp">
<input id="name" type="text" placeholder="이름" autocomplete="off" enterkeyhint="done">
</div>
<div id="auth">
<video id="zxing"></video>
</div>
<div id="warn">
<div class="ht_al">
<div class="warn_icon" id="notWork_icon"></div>
첫 사용시, DigiID가 인식이 되지 않는다면 재 등록을 해보세요. 재 등록은 DigiID 왼쪽 하단의 설정을 통해 할 수 있습니다.
</div>
<div class="ht_al">
<div class="warn_icon" id="notAlt_icon"></div>
DigiID는 실물 학생증의 완벽한 대체제가 될 수 없습니다. 항상 실물 학생증을 소지하는 것을 권장합니다.
</div>
<div class="ht_al">
<div class="warn_icon" id="notDimm_icon"></div>
DigiID를 사용하기 전, 스마트폰의 밝기가 어둡다면 밝기를 높여주세요.
</div>
<div class="ht_al">
<div class="warn_icon" id="notBlue_icon"></div>
DigiID를 사용하기 전, 블루라이트 차단 (편안하게 화면 보기) 기능이 켜져있다면 기능을 잠시 꺼주세요.
</div>
</div>
<div id="auth_fail">
<div class="warn_icon" id="fail_icon"></div>
</div>
</div>
<div id="btm_hold">
<div id="ent">다음으로</div>
</div>
</body>
</html>