mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-03 17:10:25 +08:00
14 lines
502 B
HTML
14 lines
502 B
HTML
{% if security.registerable or security.recoverable or security.confirmabled %}
|
|
<h2>Help</h2>
|
|
<ul>
|
|
{% if security.registerable %}
|
|
<li><a href="{{ url_for_security('register') }}">Register</a><br/></li>
|
|
{% endif %}
|
|
{% if security.recoverable %}
|
|
<li><a href="{{ url_for_security('forgot_password') }}">Forgot password</a><br/></li>
|
|
{% endif %}
|
|
{% if security.confirmable %}
|
|
<li><a href="{{ url_for_security('send_confirmation') }}">Confirm account</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endif %} |