forked from gbraad-apps/gauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 1.87 KB
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<title>GAuth Authenticator</title>
<meta charset="utf-8">
<meta name="description" content="GAuth Authenticator">
<meta name="HandheldFriendly" content="True">
<meta http-equiv="cleartype" content="on">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.3.3.1.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/styling.css" />
<!-- purposely at the top -->
<script src="lib/jquery-2.1.3.min.js"></script>
<script src="lib/jssha-1.31.min.js"></script>
<script src="lib/CryptoJS.aes.3.1.2.js"></script>
<script src="lib/bootstrap.3.3.1.min.js"></script>
<script src="js/gauth.js"></script>
<script src="js/main.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
<link rel="apple-touch-icon" href="img/icon_60.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/icon_120.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/icon_152.png">
</head>
<body>
<div class="row header">
<div class="col-xs-12">
<div class="add-container">
<a href="html/settings.html" target="_blank">
<span class="glyphicon glyphicon-cog bs-tooltip" title="Settings"></span>
</a>
</div>
<h1>GAuth Authenticator</h1>
</div>
</div>
<div id="otpOuter">
<div id="otpInner">
<div id="accountsHeader">
<div class="header-left">
One-time passwords
<div class="header-right">
<div id="updatingIn">..</div>
</div>
</div>
<div id="timebar"></div>
</div>
<ul id="accounts"></ul>
</div>
</div>
<input type="text" id="clipboard" />
</body>
</html>