-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
popin.html
56 lines (51 loc) · 2.51 KB
/
popin.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
56
<!doctype html>
<html>
<head>
<title data-i18n="extName">MultiPass for HTTP basic authentication</title>
<link rel="stylesheet" type="text/css" href="css/chrome-bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body class="chrome-bootstrap">
<table class="credential-table">
<thead>
<tr>
<th class="url" data-i18n="url_regexp">Url (regexp)</th>
<th class="username" data-i18n="username">Username</th>
<th class="password" data-i18n="password">Password</th>
<th class="priority" data-i18n="priority">Priority</th>
<th class="action"> </th>
</tr>
</thead>
<tbody class="credentials">
</tbody>
<tfoot>
<form id="credential-form">
<tr>
<td class="url">
<label for="url" data-i18n="url">Url</label>
<input type="text" name="url" id="url" required="true">
</td>
<td class="username">
<label for="username" data-i18n="username">Username</label>
<input type="text" name="username" id="username" required="true">
</td>
<td class="password">
<label for="password" data-i18n="password">Password</label>
<input type="password" name="password" id="password" required="true">
</td>
<td class="priority">
<label for="priority" data-i18n="priority">Priority</label>
<input type="number" value="1" name="priority" id="priority" required="required">
</td>
<td class="action">
<button type="submit" class="credential-form-submit" data-i18n="add_credential">Add</button>
<button type="reset" class="credential-form-reset" data-i18n="clear_credential">Clear</button>
</td>
</tr>
</form>
</tfoot>
</table>
<p><a href="#" class="option-link" data-i18n="open_option_page">Open the option page.</a></p>
<script type="text/javascript" src="js/popin.js"></script>
</body>
</html>