-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (60 loc) · 1.6 KB
/
index.html
File metadata and controls
63 lines (60 loc) · 1.6 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Registro de Usuario</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<div class="left-side">
<img
src="images/Letras odontos.PNG"
alt="Letras Odontos"
class="odontos"
/>
<div class="left-content">
<h2>Bienvenido</h2>
<p>
Únete para obtener las últimas actualizaciones y ofertas exclusivas.
</p>
</div>
</div>
<div class="right-side">
<header>
<h1>Registro de Usuario</h1>
</header>
<form id="signup-form">
<label for="name">Nombre:</label>
<input
type="text"
id="name"
name="name"
placeholder="Ingresa tu nombre"
required
/>
<label for="email">Correo Electrónico:</label>
<input
type="email"
id="email"
name="email"
placeholder="Ingresa tu correo electrónico"
required
/>
<label for="password">Contraseña:</label>
<input
type="password"
id="password"
name="password"
placeholder="Ingresa tu contraseña"
required
/>
<button type="submit">Registrarse</button>
<p id="message"></p>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>