openvk/Web/Presenters/templates/Auth/Restore.xml

25 lines
606 B
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
{block title}
{_"access_recovery"}
2020-06-07 19:04:43 +03:00
{/block}
{block header}
{_"page_access_recovery"}
2020-06-07 19:04:43 +03:00
{/block}
{block content}
<p>
{_"access_recovery_info"}
2020-06-07 19:04:43 +03:00
</p>
<form method="POST" enctype="multipart/form-data">
<label for="login">{_"log_in"}: </label>
2020-06-07 19:04:43 +03:00
<input id="login" type="text" name="login" required />
<br/><br/>
<input type="hidden" name="hash" value="{$csrfToken}" />
<input type="submit" value="{_'reset_password'}" class="button" style="float: right;" />
2020-06-07 19:04:43 +03:00
</form>
{/block}