-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecuperarContrasena.html
35 lines (27 loc) · 1 KB
/
recuperarContrasena.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recuperar Contraseña</title>
<link rel="stylesheet" href="estilos.css">
</head>
<body class="body_recuperar_contrasena">
<div class="content1">
<form action="" method="post" class="form_recuperar_contrasena">
<h1>MIS PRIMEROS AUXILITOS</h1>
<h3>RECUPERAR CONTRASEÑA</h3>
<div class="grupo">
<input id="correo_Recuperar_contrasena" type="email" required placeholder="Correo">
</div>
<div class="grupo">
<button id="btn_recibirCodigo" class="submit">Recibir codigo</button>
</div>
<div class="grupo">
<button id="btn_regresarALogin" onclick="location.href='login.html'">Regresar</button>
</div>
</form>
</div>
</body>
</html>