-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.64 KB
/
index.html
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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="es">
<head>
<title>POLILOCKERS</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximun-scale=1, minimun-scale=1">
<link rel="stylesheet" href="css/estilos.css">
<script type="text/javascript">
var msj = "Hemos enviado un mensaje al correo registrado con el usuario indicado, con las instrucciones para recuperar su contraseña.\n\nGracias."
var msj2 = "Debe ingresar el usuario para continuar..."
function resetP() {
var u = document.getElementById("user").value;
if(u==""){
alert(msj2);
}else{
window.location="enviarPass.php?user="+u;
alert(msj);
}
}
</script>
</head>
<body>
<div>
<img id="imgPrincipal" src="./images/IUPG.png" style="width:192px;height:47px;">
</div>
<div>
<form action="validarLogin.php" method="post">
<h1>!Bienvenido!</h1>
<p>Sistema de Gestión de lockers</p>
<input id="user" class="camposForm" type="text" placeholder ="⌨ Usuario" required name="usuario">
<input class="camposForm" type="password" placeholder="🗝 Contraseña" required name="clave">
<input class="camposForm" type="submit" value="INGRESAR" name="ingresar">
<p id="resetPass"><a href="javascript:resetP()">Recuperar Contraseña</a></p>
</form>
</div>
</body>
</html>