Initial commit

This commit is contained in:
2018-03-31 18:26:40 +02:00
commit 94f0009144
54 changed files with 9069 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% set page_title = 'Password reset' %}
{% from "_formhelpers.html" import render_field, render_submit %}
{% block content %}
<form action="{{ url_for_security('forgot_password') }}" method="POST" class="form-horizontal col-md-6 col-md-offset-3">
{{ forgot_password_form.hidden_tag() }}
{{ render_field(forgot_password_form.email) }}
{{ render_submit() }}
</form>
{% endblock %}