-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
54 lines (50 loc) · 1.48 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/font.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/core.css">
</head>
<body>
<!-- -->
<div class="card" style="width: 400px;">
<header class="is-center text-dark">
<h4>
<b>
<span id="domain-name"></span>
</b>
</h4>
</header>
<div class="row">
<div class="col">
<h5 class="bg-light text-primary" id="input-text-message"> </h5>
<h5 class="bg-light text-error" id="input-error-message"> </h5>
</div>
</div>
<footer class="is-left">
<a class="button primary" id="button-generate-password">copy password</a>
</footer>
<!-- -->
<footer class="is-left">
<details style="padding-top: 5px;">
<summary>options</summary>
<div class="row">
<div class="col">
<p>please set your master passphrase below</p>
<input type="password" id="input-passphrase">
</div>
</div>
<div class="row">
<div class="col">
<a class="button primary" id="button-update-passphrase">set passphrase</a>
</div>
</div>
</details>
</footer>
<!-- -->
</div>
<!-- -->
<script src="popup.js"></script>
<script src="hashes.js"></script>
</body>
</html>