-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistrarse.html
136 lines (104 loc) · 4.94 KB
/
registrarse.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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>registro</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="header">
<div class="logo">
<img src="./images/onlineshopping_118072.png" alt="">
<a href="index.html" class="logo"> shopTec </a>
</div>
<form action="" class="search-form">
<input type="search" id="search-box" placeholder="Buscar producto...">
<label for="search-box" class="fas fa-search"></label>
</form>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="search-btn" class="fas fa-search"></div>
<div id="acceso-btn" class="fas fa-user"></div>
<a href="#" class="fas fa-heart"></a>
<a href="carrito.html" class="fas fa-shopping-carrito"></a>
</div>
<div class="acceso-form-container">
<div id="close-acceso-btn" class="fas fa-times"></div>
<form action="">
<h3>Iniciar sesion</h3>
<span>nombre de usuario</span>
<input type="email" name="" class="box" placeholder="ingrese su correo" id="">
<span>contraseña</span>
<input type="password" name="" class="box" placeholder="ingrese su contraseña" id="">
<div class="checkbox">
<input type="checkbox" name="" id="rocordar">
<label for="rocordar"> rocordar</label>
</div>
<input type="submit" value="ingresar" class="btn">
<p>olvidaste tu contraseña <a href="#">clic aqui</a></p>
<p>¿no tienes cuenta?</p>
<a href="registrarse.html" class="btn link">registrase ahora</a>
</form>
</div>
</header>
<div class="side-bar">
<div id="close-side-bar" class="fas fa-times"></div>
<div class="user">
<img src="images/user-img.png" alt="">
<h3>Cristian Velazques</h3>
<a href="#">cerrar sesion</a>
</div>
<nav class="navbar">
<a href="index.html"> <i class="fas fa-angle-right"></i> inicio </a>
<a href="sobre-nosotros.html"> <i class="fas fa-angle-right"></i> sobre Nosotros </a>
<a href="productos.html"> <i class="fas fa-angle-right"></i> productos </a>
<a href="contactos.html"> <i class="fas fa-angle-right"></i> contactos </a>
<a href="registrarse.html"> <i class="fas fa-angle-right"></i> registrarse </a>
<a href="carrito.html"> <i class="fas fa-angle-right"></i> carrito </a>
</nav>
</div>
<section class="register">
<form action="">
<h3>Nuevo usuario</h3>
<input type="text" name="" placeholder="ingrese su nombre" id="" class="box">
<input type="email" name="" placeholder="ingrese su correo" id="" class="box">
<input type="password" name="" placeholder="ingrese una contraseña" id="" class="box">
<input type="password" name="" placeholder="repita la contraseña" id="" class="box">
<input type="submit" value="registrarse" class="btn">
<p>¿ya estas registrado?</p>
<div id="acceso-registro" class="btn link">ingresar</div>
</form>
</section>
<section class="quick-links">
<div class="logo">
<img src="./images/onlineshopping_118072.png" alt="">
<a href="index.html" class="logo"> shopTec </a>
</div>
<div class="links">
<a href="index.html"> inicio </a>
<a href="sobre-nosotros.html"> sobre Nosotros </a>
<a href="productos.html"> productos </a>
<a href="contactos.html"> contactos </a>
<a href="registrarse.html"> registrarse </a>
<a href="carrito.html"> carrito </a>
</div>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
</div>
</section>
<section class="credit">
<p> pagina creada por <span>Nahuel61920</span></p>
<img src="images/card_img.png" alt="">
</section>
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>