-
Notifications
You must be signed in to change notification settings - Fork 0
/
booking.html
139 lines (116 loc) · 5.35 KB
/
booking.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
137
138
139
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8"/>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<title> Reserva tu viaje </title>
<link rel="stylesheet" href="estilo.css"/>
</head>
<body>
<a href="MainPage.html"><img class="pod" src="images/auranInicio.png"/></a>
<header class="trip-form-header">
<h1> Explora con HyperLoopTrips! </h1>
<p><em> Reserva tu próximo viaje con nosotros, nos encanta ser tu compañía en cada aventura! </em></p>
<p><em>Al escogernos estás colaborando a reducir la contaminación. </em></p>
</header>
<form action="" method="get" class="trip-form">
<div class="form-row">
<label for="full-name"> Nombre </label>
<input id="full-name" name="full-name" type="text"/>
</div>
<div class="form-row">
<label for="full-name"> Apellidos </label>
<input id="full-name" name="full-name" type="text"/>
</div>
<div class="form-row">
<label for="id"> DNI </label>
<input id="id" name="id" type="number"/>
</div>
<div class="form-row">
<label for="email"> Correo electrónico </label>
<input id="email"
name="email"
type="email"
placeholder="[email protected]"/>
</div>
<fieldset class="legacy-form-row">
<legend> Tipo de pasaje </legend>
<input id="trip-type-1"
name="trip-type"
type="radio"
value="business"/>
<label for="trip-type-1" class="radio-label"> Business </label>
<input id="trip-type-2"
name="trip-type"
type="radio"
value="economy"
checked />
<label for="trip-type-2" class="radio-label"> Económico </label>
</fieldset>
<div class="form-row">
<label for="pronouns"> Pronombres </label>
<select id="pronouns" name="pronouns">
<option value="they/them"> Elle/le </option>
<option value="she/her"> Ella/la </option>
<option value="he/him"> Él/el </option>
</select>
</div>
<div class="form-row">
<label for="departure"> Salida </label>
<select id="departure" name="departure">
<option value="med"> Medellín, Colombia </option>
<option value="vlc"> Valencia, España </option>
<option value="edi"> Edimburgo, Reino Unido </option>
<option value="boston"> Boston, Estados Unidos </option>
</select>
</div>
<div class="form-row">
<label for="destination"> Destino </label>
<select id="destination" name="destination">
<option value="med"> Medellín, Colombia </option>
<option value="vlc"> Valencia, España </option>
<option value="edi"> Edimburgo,Reino Unido </option>
<option value="boston"> Boston, Estados Unidos </option>
</select>
</div>
<div class="form-row">
<label for="departure-date"> Fecha de ida </label>
<input id="departure-date" name="departure-date" type="date"/>
</div>
<div class="form-row">
<label for="return-date"> Fecha de vuelta</label>
<input id="return-date" name="return-date" type="date"/>
<div class="instructions"> Dejar en blanco en caso de ser solo un pasaje de ida.</div>
</div>
<div class="form-row">
<label for="abstract"> Observaciones </label>
<textarea id="abstract" name="abstract"></textarea>
<div class="instructions"> Nos pueden informar en 500 palabras si se padece alguna discapacidad, alergías u otros aspectos a tener en cuenta. </div>
</div>
<div class="form-row">
<label class="checkbox-label" for="available">
<input id="available"
name="available"
type="checkbox"
value="accepts"
checked/>
<span> He leído y acepto los términos y condiciones </span>
</label>
</div>
<div class="form-row">
<label class="checkbox-label" for="available">
<input id="available"
name="available"
type="checkbox"
value="accepts"/>
<span> Acepto que se destine el 30% de los fondos <br> recaudados con mi pasaje hacia la <br>colonización de Marte. </span>
</label>
</div>
<div class="form-row">
<button> Submit </button>
</div>
</form>
<img class="logo" src="images/Auran Blanco.png"/>
</body>
</html>