Buckler/templates/index.html

128 lines
3.3 KiB
HTML
Raw Normal View History

2019-09-14 18:36:23 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Buckler</title>
2019-09-25 12:51:36 -04:00
<link rel="stylesheet" type="text/css" href="/static/buckler.css">
2019-09-20 19:24:12 -04:00
<script>
var users_perms = {{ users_json|safe }};
</script>
<script type="text/javascript" src="/static/buckler.js"></script>
2019-09-25 12:51:36 -04:00
<script>window.onload = load;</script>
2019-09-25 15:12:58 -04:00
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta name="description" content="A small shield for web applications.">
2019-09-14 18:36:23 -04:00
</head>
<body>
2019-09-20 19:24:12 -04:00
<header>
2019-09-25 15:12:58 -04:00
<object id="logo" title="Buckler logo" data="/static/buckler_icon.svg"></object>
2019-09-20 19:24:12 -04:00
<h1>Buckler</h1>
</header>
<main>
2019-09-24 19:34:20 -04:00
<section>
2019-09-25 12:51:36 -04:00
<h2>Available Sites</h2>
<article>
<hr>
<ul id="avail_sites">
{% for site in avail_sites %}
<li><a href="{{ site['url'] }}">{{ site['name'] }}</a></li>
{% endfor %}
</ul>
</article>
2019-09-24 19:34:20 -04:00
</section>
2019-09-20 19:24:12 -04:00
{% if request['session']['admin'] %}
2019-09-24 19:34:20 -04:00
<section>
2019-09-25 12:51:36 -04:00
<h2>User Permissions</h2>
2019-09-25 15:00:29 -04:00
<article style="display: none;">
2019-09-25 12:51:36 -04:00
<hr>
<table id="users">
<thead>
<tr>
<th>User</th>
{% for app in apps %}
<th>{{ app }}</th>
{% endfor %}
<th></th>
</tr>
</thead>
<tbody>
{% for username, values in users.items() %}
<tr>
<td>{{ username }}</td>
{% for value in values %}
<td><input type="checkbox" onchange="perm_change(this.parentElement.parentElement)"{% if value %} checked{% endif %}></td>
{% endfor %}
<td><input type="submit"></td>
</tr>
2019-09-24 19:34:20 -04:00
{% endfor %}
2019-09-25 12:51:36 -04:00
</tbody>
</table>
</article>
2019-09-24 19:34:20 -04:00
</section>
2019-09-20 19:24:12 -04:00
{% endif %}
2019-09-24 19:34:20 -04:00
<section>
2019-09-25 12:51:36 -04:00
<h2>Change Password</h2>
2019-09-25 15:00:29 -04:00
<article style="display: none;">
2019-09-25 12:51:36 -04:00
<hr>
<form action="{{ request.app.router['change_password'].url_for() }}" method="post" enctype="application/x-www-form-urlencoded">
<label for="current_password">Current password</label>
<input id="current_password" name="current_password" type="password"><br>
<label for="new_password">New password</label>
<input id="new_password" name="new_password" type="password"><br>
<label for="verify_password">Verify password</label>
<input id="verify_password" name="verify_password" type="password"><br>
<input type="submit" value="Submit">
</form>
</article>
2019-09-24 19:34:20 -04:00
</section>
<section>
2019-09-25 12:51:36 -04:00
<h2>Security Keys</h2>
2019-09-25 15:00:29 -04:00
<article style="display: none;">
2019-09-25 12:51:36 -04:00
<hr>
{% if fido2_keys %}
<table id="security_keys">
<thead>
<tr>
<th>Nick</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
{% for key in fido2_keys %}
<tr>
<td>{{ key['nick'] }}</td>
<td><input type="checkbox"></td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<span>No registered keys.</span>
{% endif %}
<br><a href="./add_key">Add key</a>
</article>
2019-09-24 19:34:20 -04:00
</section>
2019-09-25 15:00:29 -04:00
<section>
<h2>Active Sessions</h2>
<article style="display: none;">
<hr>
<table id="active_sessions">
<thead>
<tr>
<th>IP Address</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
{% for session in active_sessions %}
<tr>
<td>{{ session['ip_address'] }}</td>
<td><input type="checkbox"></td>
</tr>
{% endfor %}
</tbody>
</table>
</article>
</section>
2019-09-20 19:24:12 -04:00
</main>
2019-09-14 18:36:23 -04:00
</body>
</html>