-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
39 lines (34 loc) · 1.25 KB
/
Copy pathpopup.html
File metadata and controls
39 lines (34 loc) · 1.25 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 lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>AutoAuth</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<h1>AutoAuth</h1>
<div id="pages">
<section id="home" class="page">
<p id="desc">A tiny helper for 2FA</p>
<p><strong>Stored matrix:</strong></p>
<pre id="matrix">(none)</pre>
<div>
<button id="btn-edit">Edit Matrix</button>
</div>
</section>
<section id="edit" class="page" style="display:none">
<label for="matrixInput">Input Matrix:</label>
<textarea id="matrixInput" rows="6" style="width:100%"></textarea>
<div style="margin-top:8px">
<p>View the <a href="https://zopfbit.github.io/matrix-extractor/">site</a> to convert your PDF into an
formatable array!</p>
<button id="btn-save">Save</button>
<button id="btn-back-home-edit">Back</button>
</div>
<div id="saveStatus" style="margin-top:8px;font-size:13px;color:#444"></div>
</section>
</div>
<script src="popup.js"></script>
</body>
</html>