-
Notifications
You must be signed in to change notification settings - Fork 1
/
instructions.html
126 lines (117 loc) · 3.97 KB
/
instructions.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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" />
<!-- css links -->
<link type="text/css" rel="stylesheet" href="css/instructions.css" />
<link type="text/css" rel="stylesheet" href="css/navbar.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
/>
<link
type="text/css"
rel="stylesheet"
href="webfontkit-20201125-062530/stylesheet.css"
/>
<!--jQuery-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Favicon -->
<link rel="icon" type="image/png" href="icons/favicon.png" />
<!-- title -->
<title>ADG Connect</title>
</head>
<body>
<div id="loader" class="center"></div>
<!-- Verify Email -->
<div class="main" id="verifyEmailUI" style="display: none">
<img
class="connect-logo"
src="icons/Group 2.svg"
style="margin-top: 0; margin-bottom: 0"
/>
<p id="title"></p>
<p id="message"></p>
<br />
<!-- <div class="store-icons">
<img class="store" src="icons/appstore.png" alt="appstore">
<br>
<img class="store" id="play" src="icons/playstore.png" alt="playstore">
</div> -->
<div class="buttons" id="buttons" style="display: none">
<button
class="instructions"
onclick="window.location.href='tutorial.html'"
>
Instructions
</button>
<br /><br />
<button class="admin-login" onclick="window.location.href='index.html'">
Admin Login >>
</button>
</div>
</div>
<!-- Reset Password -->
<div class="main" id="resetPasswordUI" style="display: none">
<img
class="connect-logo"
src="icons/Group 2.svg"
style="margin-top: 0; margin-bottom: 0"
/>
<p id="titleReset"></p>
<p id="messageReset"></p>
<br />
<br />
<div class="passField" id="passField">
<form id="reset-form">
<input
type="password"
id="newPass"
name="password1"
required
placeholder="New Password"
/>
<i class="far fa-eye" id="togglePassword1"></i><br /><br />
<input
type="password"
id="newPassword"
name="password2"
required
placeholder="Confirm New Password"
/><div class="resetpasswordAlert" id="divCheckPasswordMatch"></div>
<br /><br />
<button class="signup-btn" type="submit" id="change-pass">
Save
</button>
</form>
</div>
<br />
<div class="buttons" id="buttonsReset" style="display: none">
<button class="admin-login" onclick="window.location.href='index.html'">
Admin Login >>
</button>
</div>
</div>
<!-- Recover Email -->
<div class="main" id="recoverEmailUI" style="display: none">
<img
class="connect-logo"
src="icons/Group 2.svg"
style="margin-top: 0; margin-bottom: 0"
/>
<p id="message"></p>
<br />
</div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-database.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-analytics.js"></script>
<!-- <script src="js/firebase.js"></script> -->
<script src="js/instructions.js"></script>
</body>
</html>