Files
notifications-admin/app/templates/views/two-factor-sms.html
T

32 lines
862 B
HTML
Raw Normal View History

{% extends "base.html" %}
2016-01-07 20:11:22 +00:00
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-02-13 10:45:15 +00:00
{% block per_page_title %}
2022-01-04 15:40:42 +00:00
Check your phone
{% endblock %}
{% block maincolumn_content %}
2023-08-23 16:18:25 -04:00
<div class="grid-row">
<div class="grid-col-8">
2023-06-06 15:28:24 -04:00
<h1 class="font-body-2xl margin-bottom-3">Check your phone</h1>
2023-06-06 15:28:24 -04:00
<p>Weve sent you a text message with a security code.</p>
2018-09-19 12:39:36 +01:00
{% call form_wrapper(class="extra-tracking") %}
2020-08-03 18:12:52 +01:00
{{ form.sms_code(param_extensions={
2023-06-08 13:12:00 -04:00
"classes": "width-card",
2020-08-03 18:12:52 +01:00
"attributes": {"data-module": "autofocus"}
}) }}
{{ page_footer(
2016-04-23 16:11:41 +01:00
"Continue",
2020-10-09 11:42:21 +01:00
secondary_link=url_for('main.check_and_resend_text_code', next=redirect_url),
2016-04-23 16:11:41 +01:00
secondary_link_text='Not received a text message?'
) }}
2018-09-19 12:39:36 +01:00
{% endcall %}
</div>
</div>
2015-12-01 09:55:37 +00:00
{% endblock %}