31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
{% 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 %}
|