This repository was archived by the owner on Nov 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 1.45 KB
/
index.html
File metadata and controls
59 lines (59 loc) · 1.45 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./styles.css">
<script src="./render.js"></script>
<script src="./apps.js"></script>
<meta name="name" content="CBSC Verifier Portal">
<meta name="descripting" content="Access various verification services">
<title>CBSC Verification Portal</title>
</head>
<body>
<div id="loginBox">
<h2>
Login or Verify
</h2>
<p class='warning' id="verSuccess">
Email delivered. Check your inbox!
</p>
<p class='warning' id="fail">
Failed to login. Try again or re-verify to reset your code.
</p>
<p class='warning' id="loginMsg">
We couldn't find a login cooking in your browser. Please login or verify to continue:
</p>
<br>
<h3>Verify:</h3>
<label for="verify">Board Email: </label>
<input type="username" name="verify">
<br>
<span class="button" id="verify"><b>Verify</b></span>
<br>
<h3>Login:</h3>
<label for="email">Board Email: </label>
<input type="username" name="email">
<br>
<label for="code">Verification Code: </label>
<input type="password" name="code">
<p class="button" id="login"><b>Login</b></p>
</div>
<div id="topBar">
<a id="title" href="https://www.cbstudents.ca">
<b>
Verifier Portal
</b>
</a>
<span> ://</span>
<img src="./resources/moon.svg" id="toggleMode">
</div>
<div id="serviceContainer">
<div>
among
</div>
<br>
<div>
us
</div>
</div>
</body>
</html>