-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.32 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.32 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="static/style.css" />
</head>
<body>
<div id="login-background"></div>
<div id="wrapper">
<div id="login-box">
<img id="login-picture" alt="User avatar" />
<div id="login-response" role="alert" aria-live="polite"></div>
<br />
<form id="login-form">
<button type="button" id="last" aria-label="Previous user"> </button>
<div id="container">
<div id="name" aria-live="polite"></div>
</div>
<button type="button" id="next" aria-label="Next user"> </button>
<input
placeholder="Enter Password"
type="password"
id="login-password"
aria-label="Password"
autocomplete="current-password"
tabindex="2"
/>
<button id="login-button" type="submit" tabindex="3">
Log in
</button>
</form>
</div>
</div>
<script src="js/detect.js"></script>
<script src="js/jquery-2.1.0.min.js"></script>
</body>
</html>