mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-14 19:13:10 +00:00
17 lines
390 B
HTML
17 lines
390 B
HTML
{% extends "account/base.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Two-Factor Authentication" %}</h1>
|
|
|
|
<form method="post" class="login">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
|
|
<hr>
|
|
<button type="submit" class="btn btn-primary float-right">
|
|
<span class='fas fa-check-circle'></span> {% trans 'Authenticate' %}
|
|
</button>
|
|
</form>
|
|
{% endblock %}
|