console/app/templates/default/id/password_reset_step1.html
2015-12-01 02:46:00 +03:00

27 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "default/_layout.html" %}
{% block title %}Сброс пароля{% endblock %}
{% block content %}
<div class="row">
<div class="large-12 columns">
<h2>Восстановление пароля</h2>
{% if g.errors['total'] > 0 %}
<div data-alert class="alert-box alert">
{% for error in g.errors['items'] %}
{{ error }}
{% endfor %}
</div>
{% endif %}
<form action="{{ url_for('account.password_reset') }}" method="post">
<label for="email">
Адрес е.почты
<input type="text" name="email" value="" id='email' />
</label>
<input type="submit" value="Отправить проверочный код" class="button success" />
&nbsp;&nbsp;&nbsp;
<a href="{{ url_for('account.password_reset_step2') }}">Есть проверочный код</a>
</form>
</div>
</div>
{% endblock %}