2020-06-07 19:04:43 +03:00
|
|
|
{extends "../@layout.xml"}
|
2022-08-09 09:37:08 +03:00
|
|
|
{block title}{_log_in}{/block}
|
2020-06-07 19:04:43 +03:00
|
|
|
|
|
|
|
{block header}
|
2022-08-09 09:37:08 +03:00
|
|
|
{_log_in}
|
2020-06-07 19:04:43 +03:00
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block content}
|
|
|
|
<form method="POST" enctype="multipart/form-data">
|
2023-01-07 22:52:50 +03:00
|
|
|
<h4 style="margin-left: 100px; margin-right: 100px;">{_log_in}</h4>
|
|
|
|
<table cellspacing="7" cellpadding="0" width="46%" border="0" align="center">
|
2020-06-07 19:04:43 +03:00
|
|
|
<tbody>
|
2023-01-07 22:52:50 +03:00
|
|
|
<tr style="text-align: right;">
|
2020-06-07 19:04:43 +03:00
|
|
|
<td>
|
2023-01-07 22:52:50 +03:00
|
|
|
<span class="nobold">{_email}: </span>
|
2020-06-07 19:04:43 +03:00
|
|
|
</td>
|
2023-01-07 22:52:50 +03:00
|
|
|
<td style="width:191px;">
|
2020-06-07 19:04:43 +03:00
|
|
|
<input type="text" name="login" required />
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-01-07 22:52:50 +03:00
|
|
|
<tr style="text-align: right;">
|
2020-06-07 19:04:43 +03:00
|
|
|
<td>
|
2023-01-07 22:52:50 +03:00
|
|
|
<span class="nobold">{_password}: </span>
|
2020-06-07 19:04:43 +03:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="password" name="password" required />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2023-01-07 22:52:50 +03:00
|
|
|
<center>
|
|
|
|
<!-- div style="margin-bottom: 8px;">
|
|
|
|
<input type="checkbox" name="someone_pc" value=""/>
|
|
|
|
<label for="someone_pc" class="nobold">{_not_your_pc}?</label><br>
|
|
|
|
</div -->
|
|
|
|
<input type="hidden" name="hash" value="{$csrfToken}" />
|
|
|
|
<input type="submit" value="{_log_in}" class="button" />
|
|
|
|
<a href="/reg" class="button" style="display: inline-block;">{_registration}</a><br><br>
|
|
|
|
<a href="/restore">{_forgot_password}</a>
|
|
|
|
</center>
|
2020-06-07 19:04:43 +03:00
|
|
|
</form>
|
|
|
|
{/block}
|