-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
90 lines (80 loc) · 2.45 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>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Ruluko&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="popup.css">
<!-- Utils -->
<script src="thirdParty/jquery-3.3.1.min.js"></script>
<script src="popup-utils/str-utils.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div id="container">
<div id="flash">
<p id="flash-text"></p>
</div>
<div id="loader"></div>
<div id="loader-spinner"></div>
<div id="title-bar">
<i id="back-button" class="material-icons v-centered">arrow_back</i>
<i id="title-action-button" class="material-icons v-centered">exit_to_app</i>
<div id="title">Duo</div>
</div>
<div id="enter-email">
<div class="subtitle">Enter your email to get started.</div>
<div>
<input
class="text-field"
id="enter-email-text-field"
placeholder="[email protected]"
type="text"
>
<button class="big-button" id="enter-email-button">Next</button>
</div>
</div>
<div id="sign-up">
<div class="subtitle"></div>
<div>
<div class="field-title">Password</div>
<input
id="sign-up-password-input"
class="text-field"
placeholder="Password"
type="password"
>
</div>
<div>
<div class="field-title">Confirm Password</div>
<input
id="sign-up-password-confirm-input"
class="text-field"
placeholder="Confirm Password"
type="password"
>
</div>
<div class="spacer"></div>
<button class="big-button" id="sign-up-button">Create Account</button>
</div>
<div id="enter-password">
<div class="subtitle">Welcome!</div>
<div>
<input
class="text-field"
id="login-password-input"
placeholder="Password"
type="password"
>
</div>
<button class="big-button" id="enter-password-button">Login</button>
</div>
<div id="home">
<div class="subtitle"></div>
</div>
<div id="admin-home">
<div class="subtitle"></div>
</div>
</div>
</div>
</body>
</html>