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,12 @@
{% extends "base.html" %}
{% set page_title = 'Password reset' %}
{% from "_formhelpers.html" import render_field, render_submit %}
{% block content %}
<form action="{{ url_for_security('reset_password', token=reset_password_token) }}" method="POST" class="form-horizontal col-md-6 col-md-offset-3">
{{ reset_password_form.hidden_tag() }}
{{ render_field(reset_password_form.password) }}
{{ render_field(reset_password_form.password_confirm) }}
{{ render_submit() }}
</form>
{% endblock %}