{% extends "base.html" %} {% block title %}{{ _('Enter TOTP Verification Code') }} — {{ service_name }}{% endblock %} {% block content %}

{{ _('Enter TOTP Verification Code') }}

{{ confirm_form.hidden_tag() }}

{% if reason == 'login' %} {{ _('Please enter the TOTP verification code generated using an app such as Google Authenticator to complete the sign in process.') }} {% elif reason == 'activate_two_factor_authentication_method' %} {{ _('Please enter the TOTP verification code generated using an app such as Google Authenticator to activate this two factor authentication method.') }} {% elif reason == 'deactivate_two_factor_authentication_method' %} {{ _('Please enter the TOTP verification code generated using an app such as Google Authenticator to deactivate this two factor authentication method.') }} {% endif %}

{{ _('Cancel') }}
{% endblock %}