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

31 lines
1.3 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>Сброс пароля. Шаг №2</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_step2') }}" method="post">
<input type="hidden" name="recovery" value="1" />
<label for='email'>
Адрес е.почты
<input type="text" name="email" value="" id='email' />
</label>
<label for='code'>
Введите проверочный код
<input type="text" name="recovery_code" value="" id='code' />
</label>
<input type="submit" value="Сбросить пароль" class="button success" />
<a href="{{ url_for('account.password_reset') }}">Получить код</a>
</form>
</div>
</div>
{% endblock %}