-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.46 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="es">
<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>ToDo App</title>
<link rel="icon" type="image/x-icon" href="./assets/DH_Logo_Black.png" />
<meta
name="description"
content="Digital House CTD | Proyecto integrador | FRONTEND II"
/>
<!-- ---------------- estilos compartidos de login y signup ---------------- -->
<link rel="stylesheet" href="./css/loginSignupStyles.css" />
<!-- ---------------------- logica aplicada en login ----------------------- -->
<script src="./scripts/utils.js" defer></script>
<script src="./scripts/login.js" defer></script>
</head>
<body>
<header class="container">
<nav>
<h1>To-Do App</h1>
<img src="./assets/DigitalHouse_Logo_White.png" alt="logo DH" />
</nav>
</header>
<div class="container">
<form>
<div class="form-header">
<h2>To-Do App</h2>
<p class="rounded">Login</p>
</div>
<label>Email</label>
<input id="inputEmail" type="text" />
<label>Contraseña</label>
<input id="inputPassword" type="password" />
<button type="submit">Ingresar</button>
</form>
<div class="ingresarA">
<a href="signup.html">¿No tienes una cuenta? Regístrate aquí</a>
</div>
</div>
</body>
</html>