{% extends 'auth/master.twig' %} {% from 'macros.twig' import container_title %} {% from '_layout/input.twig' import input_hidden, input_csrf, input_text %} {% set title = 'Two Factor Authentication' %} {% block content %}
{{ container_title(' Two Factor Authentication') }} {{ input_csrf() }} {{ input_hidden('twofactor[redirect]', twofactor_redirect) }} {{ input_hidden('twofactor[token]', twofactor_token) }} {% if twofactor_notices|length > 0 %}
{% for notice in twofactor_notices %}

{{ notice }}

{% endfor %}
{% endif %}
Log out
{% endblock %}