27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
{% 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" />
|
||
|
||
<a href="{{ url_for('account.password_reset_step2') }}">Есть проверочный код</a>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|