15 lines
401 B
HTML
15 lines
401 B
HTML
{% extends "base_settings_page.html" %}
|
|
{% block content %}
|
|
<div style="max-width: 700px;">
|
|
|
|
<p>In order, to continue, please insert your security key & approve the registration request.</p>
|
|
|
|
<script>
|
|
const OPAQUE_STATE = "{{ opaque_state }}";
|
|
const REGISTRATION_CHALLENGE = JSON.parse(decodeURIComponent("{{ challenge_json }}"));
|
|
</script>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|