-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
24 lines (24 loc) · 894 Bytes
/
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
<html>
<head>
<title>Setup Half-Life Password</title>
<script src="jquery-1.7.1.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<form id="popup_form">
<p><label>Select password field</label></p>
<button id="prev_button">Prev<!-- <img src="left_arrow.png"> --></button>
<button id="next_button">Next<!-- <img src="right_arrow.png"> --></button>
<p><label>Half-Life format string</label><br>
%m = minutes<br>
%h = hour<br>
%d = day<br>
%t = month<br>
</p><input type="text" id="jsform"/>
<p id="example_out">Example output</p>
<p><label>Enter your username to be stored:</label></p><input type="text" id="user"/>
<p><label>Enter your password to be stored:</label></p><input type="password" id="pass"/>
<button id="save">Save</button><button id="test">Test</button><button id="cancel">Cancel</button>
</form>
</body>
</html>