-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorlog.html
More file actions
29 lines (25 loc) · 1005 Bytes
/
Copy patherrorlog.html
File metadata and controls
29 lines (25 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Formulario Inicio Sesion | CAEC</title>
<link rel="stylesheet" href="controller/css/style.css">
</head>
<body>
<div class="login-box">
<img src="controller/image/logo.png" class="avatar" alt="Avatar Image">
<h1>ERROR INICIO SESION</h1>
<form method="post" name="form1" id="form1" action="controller/inicio.php" autocomplete="off">
<!-- USERNAME INPUT -->
<label for="username">Usario</label>
<input type="text" name="usuario" id="usuario" placeholder="Ingrese Usuario">
<!-- PASSWORD INPUT -->
<label for="password">Password</label>
<input type="password" name="clave" id="password" placeholder="Ingrese Password">
<input type="submit" name="inicio" id="inicio" value="Ingresar">
<a href="#">Recordar Contraseña?</a><br>
<a href="#">Registrarme?</a>
</form>
</div>
</body>
</html>