File: register.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 (11 lines) | stat: -rw-r--r-- 517 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
{% include "_messages.html" %}
{% include "_nav.html" %}
<h1>Register</h1>
<form action="{{ url_for_security('register') }}" method="post" name="register_form">
  {{ register_user_form.hidden_tag() }}
  {{ register_user_form.email.label }} {{ register_user_form.email }}<br/>
  {{ register_user_form.password.label }} {{ register_user_form.password }}<br/>
  {{ register_user_form.password_confirm.label }} {{ register_user_form.password_confirm }}<br/>
  {{ register_user_form.submit }}
</form>
<p>{{ content }}</p>