-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (78 loc) · 2.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Barbershop</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="build/css/app.css">
</head>
<body>
<div class="contenedor-estetica">
<div class="imagen"></div>
<div class="app">
<header class="header">
<h1>BarberShop</h1>
</header>
<nav class="tabs">
<button type="button" data-tab="1">Servicios</button>
<button type="button" data-tab="2">Información Cliente</button>
<button type="button" data-tab="3">Resumen</button>
</nav>
<div id="paso-1" class="servicios seccion">
<h2>Servicios</h2>
<p class="text-center">Elige tus servicios a continuación.</p>
<div id="servicios" class="listado-servicios"></div>
</div>
<div id="paso-2" class="informacion-cliente seccion">
<h2>Tus Datos y Cita</h2>
<p class="text-center">Coloca tus datos y fecha de tu cita.</p>
<form class="formulario">
<div class="campo">
<label for="nombre">Nombre</label>
<input
type="text"
id="nombre"
placeholder="Tu Nombre"
>
</div>
<div class="campo">
<label for="nombre">Fecha</label>
<input
type="date"
id="fecha"
min="2020-11-20"
>
</div>
<div class="campo">
<label for="nombre">Hora</label>
<input
type="time"
id="hora"
min="10:00:00"
max="20:00:00"
>
</div>
</form>
</div>
<div id="paso-3" class="resumen seccion">
<h2>Resumen</h2>
<div class="contenido-resumen"></div>
</div>
<div class="paginacion">
<button
id="anterior"
type="button"
class="btn"
>« Anterior </button>
<button
id="siguiente"
class="btn"
href="#"
>Siguiente » </button>
</div>
</div>
</div>
<script src="build/js/bundle.min.js"></script>
</body>
</html>