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

56 lines
1.8 KiB
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}
<h4 style="margin-left: 100px; margin-right: 100px;">{_access_recovery}</h4>
<table cellspacing="10" cellpadding="0" border="0" align="center" width="70%">
<tbody>
<tr>
<td>
{_access_recovery_info_2}
</td>
</tr>
</tbody>
</table>
2020-06-07 19:04:43 +03:00
<form method="POST" enctype="multipart/form-data">
<table cellspacing="7" cellpadding="0" width="55%" border="0" align="center">
<tbody>
<tr>
<td class="regform-left">
<span class="nobold">{_new_password}: </span>
</td>
<td class="regform-right">
<input id="password" type="password" name="password" required />
</td>
</tr>
{if $is2faEnabled}
<tr style="text-align: right;">
<td class="regform-left">
<span class="nobold">{_"2fa_code_2"}: </span>
</td>
<td class="regform-right">
<input id="password" type="password" name="password" required />
</td>
</tr>
{/if}
<tr>
<td>
</td>
</tr>
</tbody>
</table>
<center>
<input type="hidden" name="hash" value="{$csrfToken}" />
<input type="submit" value="{_reset_password}" class="button" />
</center>
2020-06-07 19:04:43 +03:00
</form>
{/block}