-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (37 loc) · 1.48 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
<!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">
<link rel="stylesheet" href="assets/css/stylesheet.css">
<title>Log in</title>
</head>
<body>
<div class="container superior">
<h2>Public Point</h2>
</div>
<div class="container">
<div class="flex flex-column">
<h1>Inicia sesión</h1>
<form action="">
<div class="flex flex-column justify-left">
<label for="">Correo electrónico</label>
<input type="email" name="user" placeholder="Email" class="input1">
</div>
<div class="flex flex-column justify-left">
<label for="">Contraseña</label>
<input type="password" name="password" placeholder="Contraseña" class="input1">
</div>
<div class="flex flex-row justify-center">
<label for="">Recordar mis datos</label>
<input type="checkbox" name="check" class="input1">
</div>
<button class="btnPrincipal flex align-center centrar">Iniciar sesión</button>
</form>
<p class="text-align-center">¿No tienes cuenta?</p>
<a href="register.html" class="text-align-center">Registrate aquí</a>
</div>
</div>
</body>
</html>