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

24 lines
860 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>
Введите ваш новый пароль. Все текущие сеансы будут приостановлены и токены доступа будут аннулированы.
</p>
<form method="POST" enctype="multipart/form-data">
<label for="password">Новый пароль: </label>
<input id="password" type="password" name="password" required />
<br/><br/>
<input type="hidden" name="hash" value="{$csrfToken}" />
<input type="submit" value="Сбросить пароль" class="button" style="float: right;" />
</form>
{/block}