-
Notifications
You must be signed in to change notification settings - Fork 0
/
registro.html
73 lines (62 loc) · 2.53 KB
/
registro.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
<!DOCTYPE html>
<!--
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
-->
<html>
<head>
<title>Asociarse</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style2.css">
</head>
<body>
<div class="container">
<div class="container-form">
<form class="sign-in">
<h2>Iniciar Sesión</h2>
<span>Use su correo y contraseña</span>
<div class="container-input">
<input type="email" placeholder="Email">
</div>
<div class="container-input">
<input type="password" placeholder="Password">
</div>
<button class="button">INICIAR SESIÓN</button>
</form>
</div>
<div class="container-form">
<form class="sign-up">
<h2>Registrarse</h2>
<span>Use su correo electrónico para registrarse</span>
<div class="container-input">
<input type="text" placeholder="Nombre">
</div>
<div class="container-input">
<input type="Email" placeholder="Email">
</div>
<div class="container-input">
<input type="password" placeholder="Password">
</div>
<button class="button">REGISTRARSE</button>
</form>
</div>
<div class="container-welcome">
<div class="img-moto">
<img src="img/img3.png" width="150%" height="auto">
</div>
<div class="welcome-sign-up welcome">
<h3>¡Bienvenido A MOTO MARKET!</h3>
<p>Ingrese sus datos personales para asociase con nosotros</p>
<button class="button" id="btn-sign-up">Registrarse</button>
</div>
<div class="welcome-sign-in welcome">
<h3>¡Hola!</h3>
<p>Regístrese con sus datos personales para asociarse con nosotros</p>
<button class="button" id="btn-sign-in">Iniciar Sesión</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>