-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPasswordRecovery.php
54 lines (40 loc) · 1.7 KB
/
PasswordRecovery.php
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!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">
<link rel="stylesheet" href="./styles/styleForms.css">
<link rel="stylesheet" href="./styles/styleHeaderUL.css">
<title>Document</title>
</head>
<body>
<header class="header">
<div class="container-head logo-nav-container">
<a href="#" class="logo">DREAMBUCKS</a>
<div class="menu-icon">Menú</div>
<nav class="navigation">
<ul>
<li><a href="index.php">Volver</a></li>
</ul>
</nav>
</div>
</header>
<main>
<form method="post" action="PasswordRecovery2.php" class="form">
<h2 class="form-title">Recupera tu contraseña</h2>
<div class="form-container">
<div class="group">
<input class="form-input" type="email" name="txtcorreo" id="email" maxlength="15" placeholder=" " required>
<label class="label" for="txtcorreo">Correo Electronico</label>
<span class="form-line"></span>
</div>
<input class="form-submit" type="submit" name="enviar" value="Ingresar" onclick="javascript: return confirm('¿Desea enviar su nueva contraseña a este correo?');">
</div>
</form>
</main>
<?php
require "footer.html"
?>
</body>
</html>