-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 2.24 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 2.24 KB
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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Keyring store</title>
<link rel="stylesheet" href="/css/bootstrap.min.css"></link>
<link rel="stylesheet" href="/css/main.css"></link>
<script src="/js/jquery-2.2.0.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/main.js"></script>
</head>
<body>
<div class="container-fluid">
<table id="main_table">
<thead>
<tr>
<th>Label</th>
<th>Password</th>
<th>D-Bus</th>
<th>Attributes</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div style="padding-top: 10px;">
<button type="button" id="save_button" class="btn btn-primary btn-lg" >Save changes</button>
<button type="button" id="add_button" class="btn btn-primary btn-lg" >Add entry</button>
</div>
</div>
<div>
<input id="change_input"></input>
</div>
<div>
<button id="del_button" class="btn btn-danger" aria-label="Delete"><span class="glyphicon glyphicon-remove" aria-hidden="true"> Delete item</span></button>
<button id="add_attrib_button" class="btn btn-success" aria-label="Add attribute"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
</div>
<div id="add_entry_modal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Add new entry</h4>
</div>
<div class="modal-body">
<label for="entry_label">Label: </label><input id="entry_label" />
<label for="entry_password">Password: </label><input id="entry_password" />
<div id="collection_chooser"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary">Add entry</button>
</div>
</div>
</div>
</div>
</body>
</html>