-
Notifications
You must be signed in to change notification settings - Fork 9
/
popup.html
44 lines (42 loc) · 1.25 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>AWS Role Editor</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/spectrum.css">
<link rel="stylesheet" href="css/custom.css">
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/spectrum.js"></script>
<script src="js/popup.js"></script>
</head>
<body>
<div class="container-fluid">
<h4>AWS Role Editor</h4>
<form>
<table class="table table-condensed">
<thead>
<tr>
<th></th>
<th>Account</th>
<th>Role</th>
<th>Display Name</th>
<th width="60px">Color</th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="pull-right">
<input type="submit" class="btn btn-primary btn-sm" value="Save">
</div>
</form>
<div class="clearfix"></div>
<div id="saved" class="alert alert-success" role="alert">Saved</div>
<div id="failed" class="alert alert-danger" role="alert">Error..</div>
</div>
</html>