-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.88 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Allowed Applications</title>
<!-- Bootstrap -->
<link href="ext/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="ext/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<div id="authorizedApplications">
<h1>Allowed Applications</h1>
<p class="lead">This page allows you to revoke applications that have access to your data.</p>
<table id="authorizedApplicationsTable" class="table table-striped table-bordered">
<thead>
<tr><th>Application</th><th>Permissions</th><th>Actions</th></tr>
</thead>
<tbody id="authorizedApplicationsList">
</tbody>
</table>
<p class="text-info"><span class="label label-info">Info</span> <small>Removing the authorization for an application will required the application to request your permission again next time you use it.</small></p>
</div> <!-- /authorizedApplications -->
</div> <!-- /wrapper -->
<script id="authorizedApplicationsListTemplate" type="text/x-jsrender">
<tr>
<td><span title="{{:description}}">{{:name}}</span></td>
<td>{{:scope}}</td>
<td>
<button class="btn btn-danger btn-small deleteAuthorization " data-client-name="{{:name}}" data-client-id="{{:id}}" href="#"><i class="icon-trash icon-white"></i> Delete</button>
</td>
</tr>
</script>
<script src="ext/js/jquery.js"></script>
<script src="ext/js/jsrender.js"></script>
<script src="ext/js/jso.js"></script>
<!-- <script src="ext/bootstrap/js/bootstrap.min.js"></script> -->
<script src="js/manage.js"></script>
</body>
</html>