Buckler/templates/index.html

198 lines
6.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Buckler</title>
<link rel="stylesheet" type="text/css" href="/static/buckler.css">
<script>
var user_perms = {{ user_perms_json|safe }};
</script>
<script type="text/javascript" src="/static/buckler.js"></script>
<script>window.onload = load;</script>
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta name="description" content="A small shield for web applications.">
</head>
<body>
<header>
<object id="logo" title="Buckler logo" data="/static/buckler_icon.svg"></object>
<h1>Buckler</h1>
<span id="username">Logged in as: <b>{{ request['session']['username'] }}</b> (<a href="./logout">Logout</a>)</span>
</header>
<main>
<section>
<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>
</section>
{% if request['session']['admin'] %}
<section>
<h2>Admin Panel</h2>
<article style="display: none;">
<hr>
<section class="sub_section">
<h3>User Permissions</h3>
<article style="display: none;">
<hr>
<form id="user_perm_form">
<input name="form_name" type="hidden" value="change_user_perms">
<table id="users">
<thead>
<tr>
<th>User</th>
{% for app in apps %}
<th data-app-id="{{ app['id'] }}">{{ app['name'] }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for user_id, values in user_perms_dict.items() %}
<tr>
<td data-user-id="{{ user_id }}">{{ users_dict[user_id] }}</td>
{% for app_id, value in values.items() %}
<td><input aria-label="{{ users_dict[user_id] }}-{{ apps_dict[app_id] }}" data-user-id="{{ user_id }}" data-app-id="{{ app_id }}" type="checkbox"{% if value %} checked{% endif %}></td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
<input type="submit" value="Submit">
</form>
</article>
</section>
<br>
<section class="sub_section">
<h3>Invite New User</h3>
<article style="display: none;">
<hr>
<form method="post" enctype="application/x-www-form-urlencoded">
<input name="form_name" type="hidden" value="invite_user">
<label for="new_user_email">Email</label>
<input id="new_user_email" name="email" type="email">
<p><input type="submit" value="Submit">
</form>
</article>
</section>
<br>
<section class="sub_section">
<h3>Add New App</h3>
<article style="display: none;">
<hr>
<form method="post" enctype="application/x-www-form-urlencoded">
<input name="form_name" type="hidden" value="new_app">
<table id="new_app" class="no_borders">
<tr>
<td><label for="new_app_name">App Name</label></td>
<td><input id="new_app_name" name="app_name" type="text"></td>
</tr>
<tr>
<td><label for="new_app_url">App URL</label></td>
<td><input id="new_app_url" name="app_url" type="text"></td>
</tr>
<tr>
<td><label for="new_app_key">App Key</label></td>
<td><input id="new_app_key" name="app_key" type="password"></td>
</tr>
</table>
<input type="submit" value="Submit">
</form>
</article>
</section>
</article>
</section>
{% endif %}
<section>
<h2>Change Password</h2>
<article style="display: none;">
<hr>
<form method="post" enctype="application/x-www-form-urlencoded">
<input name="form_name" type="hidden" value="change_password">
<table id="change_password" class="no_borders">
<tr>
<td><label for="current_password">Current password</label></td>
<td><input id="current_password" name="current_password" type="password"></td>
</tr>
<tr>
<td><label for="new_password">New password</label></td>
<td><input id="new_password" name="new_password" type="password"></td>
</tr>
<tr>
<td><label for="verify_password">Verify password</label></td>
<td><input id="verify_password" name="verify_password" type="password"></td>
</tr>
</table>
<input type="submit" value="Submit">
</form>
</article>
</section>
<section>
<h2>Security Keys</h2>
<article style="display: none;">
<hr>
{% if fido2_keys %}
<form method="POST" enctype="application/x-www-form-urlencoded">
<input name="form_name" type="hidden" value="delete_key">
<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 aria-label="Delete {{ key['nick'] }}" id="fido-{{ key['id'] }}" name="fido-{{ key['id'] }}" type="checkbox"></td>
</tr>
{% endfor %}
</tbody>
</table>
<input type="submit" value="Delete">
</form>
{% else %}
<span>No registered keys.</span>
{% endif %}
<br><a href="./add_key">Add key</a>
</article>
</section>
<section>
<h2>Active Sessions</h2>
<article style="display: none;">
<hr>
<form method="POST" enctype="application/x-www-form-urlencoded">
<input name="form_name" type="hidden" value="delete_session">
<table id="active_sessions">
<thead>
<tr>
<th>Session ID</th>
<th>IP Address</th>
<th>Created</th>
<th>Last Used</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
{% for session in active_sessions %}
<tr>
<td><code>{{ session['id'][:5] }}...{{ session['id'][-5:] }}</code></td>
<td>{{ session['ip_address'] }}</td>
<td>{{ session['date_created'].strftime('%Y-%m-%d %H:%M') }}</td>
<td>{{ session['last_used'].strftime('%Y-%m-%d %H:%M') }}</td>
<td><input aria-label="Delete {{ session['id'][:5] }}...{{ session['id'][-5:] }}" id="session-{{ session['id'] }}" name="session-{{ session['id'] }}" type="checkbox"></td>
</tr>
{% endfor %}
</tbody>
</table>
<input type="submit" value="Delete">
</form>
</article>
</section>
</main>
</body>
</html>