-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 2.03 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 2.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inicio</title>
<link rel="stylesheet" href="/css/inicio.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png">
<link rel="manifest" href="/assets/icons/site.webmanifest">
</head>
<body>
<header class="header">
<img class="header--img" src="/assets/images/LOGO PARQUES DE CASTILLA.png" alt="Parques de Castilla 2">
<div class="header--title-container">
<h1>UNIDAD RESIDENCIAL</h1>
<!-- <nav>
<ul>
<li><a href="/pages/admin.html">Registrar</a></li>
<li><a href="/pages/listar.html">Listar</a>></li>
<li><a href="/pages/reportes.html">Reportes</a>></li>
<li><a href="/pages/seguridad.html">Seguridad</a></li>
</ul>
</nav> -->
</div>
</header>
<main class="main">
<form action="/enviar_formulario" method="POST" class="main--formulario" target="_self">
<label for="email">Email</label>
<input type="email" id="email" name="email" required autofocus>
<label>Password</label>
<input type="password" id="password" name="password" required>
<!-- Botones -->
<button type="submit" class="main--submit-button">Enviar</button>
</form>
</main>
<footer>
<p> © 2024 Juan David Santamaría . All rights reserved</p>
</footer>
</body>
</html>