-
Notifications
You must be signed in to change notification settings - Fork 16
/
passwordDialog.html
43 lines (42 loc) · 1.35 KB
/
passwordDialog.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
<html>
<head>
<title>iMacros password dialog</title>
<link rel="stylesheet" type="text/css"
href="skin/common.css" />
<link rel="stylesheet" type="text/css"
href="skin/passwordDialog.css" />
<script src="utils.js"></script>
<script src="passwordDialog.js"></script>
</head>
<body>
<div id="container" class="vbox">
<div id="message-div" class="vbox">
<div class="hbox">
<div id="message-and-password-box" class="vbox">
<div>
<span id="message">
Enter Master Password:
</span>
<span id="more-info-encryption" class="a-link"> (More Info)</span>
</div>
<div>
<input type="password" id="password"></input>
</div>
</div>
</div>
<div id="note"><span >Please note that this password is <b>not</b> stored for your security. But you need to enter it only once at the first macro run after the browser was started.</span>
</div>
</div>
<div id="buttons" class="hbox centered">
<div id="ok-button" class="button icon-button">
<span>OK</span>
</div>
<div id="cancel-button" class="button icon-button">
<span>Cancel</span>
</div>
</div>
<div>
</div>
</div>
</body>
</html>