File: two_factor_select.html

package info (click to toggle)
flask-security 5.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,524 kB
  • sloc: python: 23,478; javascript: 204; makefile: 138
file content (14 lines) | stat: -rw-r--r-- 654 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% set title = title|default(_fsdomain("Select Two-Factor Method")) %}
{% extends "security/base.html" %}
{% from "security/_macros.html" import prop_next, render_field_with_errors, render_field %}

{% block content %}
  {% include "security/_messages.html" %}
  <h1>{{ _fsdomain('Select Two-Factor Method') }}</h1>
  <form action="{{ url_for_security('tf_select') }}{{ prop_next() }}" method="post" name="tf_select">
    {{ two_factor_select_form.hidden_tag() }}
    {{ render_field_with_errors(two_factor_select_form.which) }}
    {{ render_field(two_factor_select_form.submit) }}
  </form>
  {% include "security/_menu.html" %}
{% endblock content %}