1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-21 12:33:47 +01:00
Files
CheckServer/assets/html/login.twig
2017-10-30 22:59:39 +01:00

32 lines
1.1 KiB
Twig
Executable File

{% include 'header.twig' %}
<section>
<div class="col-lg-10 mhcenter">
<div class="card">
<div class="card-header d-flex align-items-center">
<h2 class="h5 display">Inicio de sesión de CheckServer</h2>
</div>
<div class="card-block">
{% if status == 'error' %}
<h2>Datos incorrectos, vuelva a intentarlo</h2>
{% endif %}
<form id="form1" method="post" action="login.php">
<table>
<tbody>
<tr>
<td class="textT">Nick:</td>
<td style="padding-left:10px;"><input name="nick" type="text" id="nick"></td>
</tr>
<tr>
<td class="textT">Contraseña:</td>
<td style="padding-left:10px;"><input name="pass" type="password" id="pass" required="required"></td>
</tr>
<tr>
<td></td><td><button type="submit" class="btn">Enviar</button></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
</div>
</section>