-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
62 lines (61 loc) · 3.09 KB
/
admin.html
File metadata and controls
62 lines (61 loc) · 3.09 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" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title data-i18n="admin.pageTitle"></title>
<link rel="icon" href="assets/img/favicon.ico" sizes="any">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="stylesheet" href="assets/css/style.css">
<script>document.documentElement.classList.remove('no-js');</script>
</head>
<body class="admin-body">
<main class="admin-main">
<h1 data-i18n="admin.heading"></h1>
<p class="admin-description" data-i18n="admin.description"></p>
<div class="admin-actions">
<button type="button" class="button button-primary" id="refresh-button" data-i18n="admin.actions.refresh"></button>
<a class="button button-ghost" href="index.html" data-i18n="admin.actions.home"></a>
</div>
<div class="table-wrapper" role="region" aria-live="polite" data-locked="true" data-overlay-message="" data-i18n-attr="data-overlay-message:admin.table.overlayLocked">
<table class="admin-table">
<thead>
<tr>
<th data-i18n="admin.table.headers.id"></th>
<th data-i18n="admin.table.headers.email"></th>
<th data-i18n="admin.table.headers.company"></th>
<th data-i18n="admin.table.headers.context"></th>
<th data-i18n="admin.table.headers.country"></th>
<th data-i18n="admin.table.headers.created"></th>
<th data-i18n="admin.table.headers.actions"></th>
</tr>
</thead>
<tbody id="applications-body">
<tr>
<td colspan="7" data-i18n="admin.table.empty"></td>
</tr>
</tbody>
</table>
</div>
</main>
<div class="modal" id="admin-auth-modal" aria-hidden="true">
<div class="modal-overlay"></div>
<div class="modal-dialog" role="dialog" aria-modal="true" aria-labelledby="admin-auth-title">
<h2 id="admin-auth-title" data-i18n="admin.modal.title"></h2>
<p class="modal-description" data-i18n="admin.modal.description"></p>
<form id="admin-auth-form" class="modal-form">
<div class="form-group">
<label for="admin-password" data-i18n="admin.modal.passwordLabel"></label>
<input type="password" id="admin-password" name="password" autocomplete="current-password" required>
</div>
<button type="submit" class="button button-primary" data-i18n="admin.modal.submit"></button>
<p class="form-status" id="admin-auth-status" role="status" aria-live="polite"></p>
</form>
</div>
</div>
<script src="assets/js/i18n.js"></script>
<script src="assets/js/config.js"></script>
<script src="assets/js/storage.js"></script>
<script src="assets/js/admin.js"></script>
</body>
</html>