-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
86 lines (84 loc) · 4.77 KB
/
login.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!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">
<title>Home - Login</title>
<link rel="icon" type="image/png" href="./img/Joystick.png" />
<link rel="stylesheet" href="CSS/reset.css">
<link rel="stylesheet" href="CSS/root.css">
<link rel="stylesheet" href="CSS/Nuevos Productos/header.css">
<link rel="stylesheet" href="CSS/HomeLogin/login.css">
<link rel="stylesheet" href="CSS/Index/about.css">
<link rel="stylesheet" href="CSS/Index/banner.css">
<link rel="stylesheet" href="CSS/Index/productos.css">
<link rel="stylesheet" href="CSS/Index/contacto.css">
<link rel="stylesheet" href="CSS/Index/footer.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=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header__contenido">
<div class="header__contenido__logo">
<img src="img/Joystick and Alura.png" alt="Logo Alura Geek" class="header__contenido__imagen">
</div>
<div class="header__contenido__buscarylogin">
<div class="header__contenido__buscarylogin__contenedorBuscar">
<img src="img/Lupa.png" alt="" class="header__contenido__buscarylogin__imagen">
<img src="img/lupa-clara.png" alt="" class="header__contenido__buscarylogin__imagen2">
<input class="header__contenido__buscarylogin--barra" type="search" placeholder="¿Qué deseas buscar?">
</div>
</div>
</div>
</header>
<section class="login">
<div class="login__contenedor">
<form action = "" class="login__contenedor--form">
<h3 class="login__contenedor--titulo">Iniciar Sesion</h3>
<p class="login__contenedor--titulo--msjUser"></p>
<input type="email" class="login__contenedor--input" id="userEmail" placeholder="Escriba su correo electrónico" required>
<input type="password" class="login__contenedor--input" id="userPass" placeholder="Escriba su contraseña" required>
<button class="login__contenedor--boton">Entrar</button>
</form>
</div>
</section>
<section class="aboutContacto">
<div class="aboutContacto--contenedor">
<div class="aboutContacto__about">
<div class="aboutContacto__about__logo">
<img src="img/Joystick and Alura.png" alt="Logo Alura Geek" class="aboutContacto__about__logo--img">
</div>
<div class="aboutContacto__about__links">
<a href="##" class="aboutContancto__about__links__link">Quienes somos</a>
<a href="##" class="aboutContancto__about__links__link">Política de privacidad</a>
<a href="##" class="aboutContancto__about__links__link">Programa de fidelidad</a>
<a href="##" class="aboutContancto__about__links__link">Nuestras tiendas</a>
<a href="##" class="aboutContancto__about__links__link">Quiero ser franquiciado</a>
<a href="##" class="aboutContancto__about__links__link">Anuncie aquí</a>
</div>
</div>
<div class="aboutContacto__contacto">
<h3 class="aboutContacto__contacto__titulo">Hable con nosotros</h3>
<form action="" class="aboutContacto__contacto__form">
<div class="aboutContacto__contacto__form__mensajeUsuario">
<p class="aboutContacto__contacto__form__mensajeUsuario--msj">Su mensaje ha sido enviado</p>
</div>
<input type="text" class="aboutContacto__contacto__form__nombre" placeholder="Nombre" required minlength="2" maxlength="40">
<textarea type="text" class="aboutContacto__contacto__form__mensaje" placeholder="Escribe tu mensaje"required minlength="2" maxlength="120"></textarea>
</form>
<button type="submit" class="aboutContacto__contacto__boton">Enviar Mensaje</button>
</div>
</div>
</section>
<footer class="footer">
<div class="footer__contenedor">
<p class="footer__contenedor__texto">Desarrollado por McFale</p>
<p class="footer__contenedor__texto">2022</p>
</div>
</footer>
<script type="module" src="JS/botonesLogin.js"></script>
</body>
</html>