Update Login.xml

This commit is contained in:
ZAZiOs 2022-11-22 21:58:33 +03:00 committed by GitHub
parent 62318d386b
commit f12cf649ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,19 +7,20 @@
{block content} {block content}
<form method="POST" enctype="multipart/form-data"> <form method="POST" enctype="multipart/form-data">
<h4 style="margin-left: 100px; margin-right: 100px;">{_log_in}</h4>
<table cellspacing="7" cellpadding="0" width="40%" border="0" align="center"> <table cellspacing="7" cellpadding="0" width="40%" border="0" align="center">
<tbody> <tbody>
<tr> <tr style="text-align: right;">
<td> <td>
<span>{_email}: </span> <span class="nobold">{_email}: </span>
</td> </td>
<td> <td>
<input type="text" name="login" required /> <input type="text" name="login" required />
</td> </td>
</tr> </tr>
<tr> <tr style="text-align: right;">
<td> <td>
<span>{_password}: </span> <span class="nobold">{_password}: </span>
</td> </td>
<td> <td>
<input type="password" name="password" required /> <input type="password" name="password" required />
@ -30,9 +31,12 @@
</td> </td>
<td> <td>
<center>
<input type="hidden" name="hash" value="{$csrfToken}" /> <input type="hidden" name="hash" value="{$csrfToken}" />
<input type="submit" value="{_log_in}" class="button" /> <input type="submit" value="{_log_in}" class="button" />
<a href="/reg">{_registration}</a> <a href="/reg" class="button" style="display: inline-block;">{_registration}</a><br><br>
<a href="/restore">{_forgot_password}</a>
</center>
</td> </td>
</tr> </tr>
</tbody> </tbody>