mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
16 lines
329 B
HTML
16 lines
329 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 }}
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
{% trans 'Authenticate' %}
|
|
</button>
|
|
</form>
|
|
{% endblock %}
|