-
Notifications
You must be signed in to change notification settings - Fork 0
/
recuperar.html
38 lines (31 loc) · 1.19 KB
/
recuperar.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
38
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registro - TOPGAMES</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="container-fluid">
<h1>TOPGAMES</h1>
<nav>
<a href="index.html" class="btn btn-primary">Volver al inicio</a>
</nav>
</header>
<main class="container">
<div class="formulario">
<h1>Recuperar contraseña</h1>
<form method="post">
<div class="username">
<input type="email" class="form-control" id="email" name="email" required>
<label for="email" class="form-label">Correo Electrónico</label>
<span></span>
</div>
<button type="send" class="btn btn-secondary">Enviar</button>
</form>
</div>
</main>
</body>
</html>