mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
43 lines
816 B
HTML
43 lines
816 B
HTML
{% extends "account/base.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
<h3>
|
|
{% trans "Setup Two-Factor Authentication" %}
|
|
</h3>
|
|
|
|
<h4>
|
|
{% trans 'Step 1' %}:
|
|
</h4>
|
|
|
|
<p>
|
|
{% trans 'Scan the QR code below with a token generator of your choice (for instance Google Authenticator).' %}
|
|
</p>
|
|
|
|
<div class="bg-light rounded">
|
|
<img src="{{ qr_code_url }}" class="mx-auto d-block"/>
|
|
</div>
|
|
<br>
|
|
|
|
<h4>
|
|
{% trans 'Step 2' %}:
|
|
</h4>
|
|
|
|
<p>
|
|
{% trans 'Input a token generated by the app:' %}
|
|
</p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
|
|
<button type="submit" class="btn btn-primary btn-block w-100">
|
|
{% trans 'Verify' %}
|
|
</button>
|
|
</form>
|
|
|
|
<div>
|
|
<a href="{% url 'settings' %}" class="btn btn-secondary w-100 btn-sm mt-3">{% trans "back to settings" %}</a>
|
|
</div>
|
|
{% endblock %}
|