-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 2.39 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 2.39 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
60
61
62
63
64
<!DOCTYPE html5>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./assets/style/index.css" />
<link
rel="shortcut icon" type="image/x-icon"
href="assets/images/favicon.png"
/>
<title>Online Voting System</title>
</head>
<body>
<section>
<table>
<thead>
<tr>
<th class="ths" id="adm1">Admin1</th>
<th class="ths" id="adm2">Admin2</th>
<th class="ths" id="adm3">Admin3</th>
<th class="ths" id="adm4">Admin4</th>
<th class="ths" id="adm5">Admin5</th>
<th class="ths" id="adm6">Admin6</th>
<th class="ths" id="adm7">Admin7</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="7" class="btd">
<div class="form-box">
<div class="form-value">
<form
id="form"
method="post"
onsubmit="return false;"
autocomplete="off"
>
<h2>Login</h2>
<div class="inputbox">
<input name="usernm" type="text" id="unm" required />
<label for="usernm">Username</label>
</div>
<div class="inputbox">
<input type="password" id="pass" required />
<label>Password</label>
</div>
<p id="err" class="err">Wrong Username or Password</p>
<button id="submit" class="sbmBtn">Log in</button>
</form>
<button class="skpBtn" id="skp">Skip</button>
</div>
</div>
</td>
</tr>
</tbody>
</table>
<!-- <a href="./pages/adminAuth.html" class="newEnv">Create New Election Environment</a> -->
</section>
<script src="node_modules/argon2-browser/dist/argon2-bundled.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-firestore.js"></script>
<script type="module" src="./assets/script/script.js"></script>
</body>
</html>