1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-15 17:51:39 +01:00

First commit. Check if all is uploaded well.

This commit is contained in:
Kevin Puertas
2017-10-30 22:59:39 +01:00
parent f88dceff1b
commit 6b38aa6cf8
247 changed files with 27230 additions and 0 deletions

32
assets/html/login.twig Executable file
View File

@@ -0,0 +1,32 @@
{% 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>