openvk/Web/Presenters/templates/Auth/Restore.xml
2020-06-07 19:04:43 +03:00

24 lines
853 B
XML
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 "../@layout.xml"}
{block title}
Восстановление доступа
{/block}
{block header}
Восстановить доступ к странице
{/block}
{block content}
<p>
Забыли пароль? Не волнуйтесь, введите ваши данные и мы отправим вам email с инструкциями по восстановлению аккаунта.
</p>
<form method="POST" enctype="multipart/form-data">
<label for="login">Логин: </label>
<input id="login" type="text" name="login" required />
<br/><br/>
<input type="hidden" name="hash" value="{$csrfToken}" />
<input type="submit" value="Сбросить пароль" class="button" style="float: right;" />
</form>
{/block}