-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidarcorreo.html
33 lines (27 loc) · 1.09 KB
/
validarcorreo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Formulario Inicio Sesion | CAEC</title>
<link rel="stylesheet" href="controller/css/style.css">
</head>
<body onload="form1.doc.focus()">
<div class="login-box">
<!--crea una caja imaginaria-->
<img src="controller/image/logo.png" class="avatar" alt="Avatar Image">
<!--insertamos una imagen-->
<h1>RECUPERAR CONTRASEÑA</h1>
<!--Inserta titulo-->
<form method="POST" name="form1" id="form1" autocomplete="off" action="model/recuperarclave.php">
<!--crea formularios-->
<label for="usuario">Documento Identidad</label>
<!-- etiqueta lo que se le muestra el usuario -->
<input type="text" name="doc" id="doc" placeholder="Digite Documento Identidad" required>
<!-- Caja de texto donde el usuario digite texto -->
<input type="submit" name="inicio" id="inicio" value="Validar">
<!--Crear el boton-->
<a href="index.html">Volver Pagina Principal</a>
</form>
</div>
</body>
</html>