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

30 lines
807 B
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
{block title}
2022-08-09 09:37:08 +03:00
{_access_recovery}
2020-06-07 19:04:43 +03:00
{/block}
{block header}
2022-08-09 09:37:08 +03:00
{_page_access_recovery}
2020-06-07 19:04:43 +03:00
{/block}
{block content}
<p>
2022-08-09 09:37:08 +03:00
{_access_recovery_info_2}
2020-06-07 19:04:43 +03:00
</p>
<form method="POST" enctype="multipart/form-data">
2022-08-09 09:37:08 +03:00
<label for="password">{_new_password}: </label>
2020-06-07 19:04:43 +03:00
<input id="password" type="password" name="password" required />
<br/><br/>
{if $is2faEnabled}
<label for="code">{_"2fa_code_2"}: </label>
<input id="code" type="text" name="code" required />
<br/><br/>
{/if}
2020-06-07 19:04:43 +03:00
<input type="hidden" name="hash" value="{$csrfToken}" />
2022-08-09 09:37:08 +03:00
<input type="submit" value="{_reset_password}" class="button" style="float: right;" />
2020-06-07 19:04:43 +03:00
</form>
{/block}