-
Notifications
You must be signed in to change notification settings - Fork 41
/
options.html
41 lines (37 loc) · 1.38 KB
/
options.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Vault for Chrome: Settings</title>
<script src="common.js"></script>
<script src="options.js"></script>
<script src="jquery-3.3.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<link rel="stylesheet" href="bootstrap.min.css">
<script src="bootstrap.min.js"></script>
</head>
<body>
<br />
<div id="login" align="center">
<label for="serverBox" id="serverBoxLabel">Vault server URL: </label>
<input type="text" name="server" id="serverBox" />
<label for="loginBox" id="loginBoxLabel">Username:</label>
<input type="text" name="login" id="loginBox" />
<label for="passBox" id="passBoxLabel">Password:</label>
<input type="password" name="pass" id="passBox" />
<label for="authMount" id="authMountLabel">Auth Mountpoint:</label>
<select name="authMount" id="authMount">
<option value="ldap">ldap</option>
<option value="userpass">userpass</option>
</select>
<br /><br />
<input type="submit" value="Login to Vault" id="authButton" />
<br /><br />
</div>
<div id="logout" align="center" style="visibility: hidden;">
<input type="submit" value="Logout" id="logoutButton" />
</div>
<div id="secretList"></div>
<div id="notify" align="center"></div>
</body>
</html>