2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2020-05-18 14:07:06 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% set active_page = "setting" %}
|
|
|
|
{% block title %}Manage Security Key{% endblock %}
|
2020-05-18 14:07:06 +02:00
|
|
|
{% block head %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-05-18 14:07:06 +02:00
|
|
|
<script src="{{ url_for('static', filename='node_modules/qrious/dist/qrious.min.js') }}"></script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block default_content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-05-18 14:07:06 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h1 class="h2">Manage Your Security Key</h1>
|
2022-07-04 16:01:04 +02:00
|
|
|
<p>Unlink all keys will also disable WebAuthn 2FA.</p>
|
2020-05-18 14:07:06 +02:00
|
|
|
<form id="formManageKey" method="post">
|
|
|
|
{{ fido_manage_form.csrf_token }}
|
|
|
|
{{ fido_manage_form.credential_id(class="form-control", placeholder="") }}
|
|
|
|
</form>
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">ID</th>
|
|
|
|
<th scope="col">Name</th>
|
|
|
|
<th scope="col">Linked At</th>
|
|
|
|
<th scope="col" class="text-center">Operation</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2022-06-29 11:28:26 +02:00
|
|
|
{% for key in keys %}
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{{ key.id }}</th>
|
|
|
|
<td>{{ key.name }}</td>
|
|
|
|
<td>{{ key.created_at | dt }}</td>
|
|
|
|
<td class="text-center">
|
|
|
|
<button class="btn btn-outline-danger"
|
|
|
|
onclick="$('#credential_id').val('{{ key.credential_id }}'); $('#formManageKey').submit();">
|
|
|
|
Unlink
|
|
|
|
</button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2020-05-18 14:07:06 +02:00
|
|
|
<tr>
|
|
|
|
<th scope="row">#</th>
|
|
|
|
<td>Link a New Key</td>
|
|
|
|
<td></td>
|
2022-06-29 11:28:26 +02:00
|
|
|
<td class="text-center">
|
|
|
|
<a href="{{ url_for('dashboard.fido_setup') }}">
|
|
|
|
<button class="btn btn-outline-success">Link</button>
|
|
|
|
</a>
|
|
|
|
</td>
|
2020-05-18 14:07:06 +02:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|