-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
executable file
·55 lines (55 loc) · 2.15 KB
/
Copy pathmain.html
File metadata and controls
executable file
·55 lines (55 loc) · 2.15 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
<!DOCTYPE html>
<html>
<head>
<script src="scripts/totp.js"></script>
<link rel="stylesheet" href="style/main.css " />
</head>
<body class="bod">
<div class="header">
<img class="logo" src="style/logo.png" />
</div>
<div>
<table>
<tr>
<td><label>Autoinput login info</label></td>
<td>
<label class="switch">
<input id="autoLoginInfo" type="checkbox" />
<span class="slider"></span>
</label>
</td>
</tr>
<tr>
<td><label>Autoinput 2FA code</label></td>
<td>
<label class="switch">
<input id="auto2FA" type="checkbox" />
<span class="slider"></span>
</label>
</td>
</tr>
</table>
<br />
<div id="usernameAndPasswordDiv">
<label for="fname">Username:</label><br />
<input type="text" id="usernameInput" name="fname" value="" /><br />
<label for="fname">Password:</label><br />
<input type="password" id="passwordInput" name="fname" value="" />
<i class="eye-slash" id="togglePassword"></i><br />
<input id="usernameAndPasswordUpload" type="button" value="Save username and password" />
</div>
<div id="secretDiv">
<label for="fname">Secret:</label><br />
<input type="password" id="secretInput" name="fname" value="" />
<i class="eye-slash" id="toggleSecret"></i><br />
<input id="secretUpload" type="button" value="Save secret from textbox" />
</div>
<br />
<h2>2FA Code:</h2>
<h2 id="totpCode">Secret required</h2>
<h4 id="timeLeft"></h4>
</div>
<div class="footer"></div>
<script src="scripts/popup.js"></script>
</body>
</html>