-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommande-etape2.html
executable file
·158 lines (153 loc) · 4.82 KB
/
commande-etape2.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Commande etape 2</title>
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/app.css" />
<link
rel="shortcut icon"
href="./img/brulhe-logo.svg"
type="image/x-icon"
/>
</head>
<body>
<div class="container dimension">
<header class="mt-3">
<a href="./index.html"
><img src="./img/brulhe-logo.svg" alt="brulhe logo"
/></a>
</header>
<div class="mt-3 mb-3">
<h1>Étape 2 - Configuration du breuvage</h1>
<form action="./confirmation.html">
<h2 class="mt-2">Grain</h2>
<div
class="d-flex flex-column flex-md-column flex-lg-row justify-content-around mb-2"
>
<div class="d-flex flex-column align-items-center">
<img src="./img/arabica.webp" alt="arabica" />
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
checked
value="Arabica"
id="defaultCheck2"
name="cafe"
/>
<label class="form-check-label" for="defaultCheck2">
Arabica
</label>
</div>
</div>
<div class="d-flex flex-column align-items-center">
<img src="./img/robusta.webp" alt="robusta" />
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
value="robusta"
id="robusta"
name="cafe"
/>
<label class="form-check-label" for="robusta"> Robusta </label>
</div>
</div>
<div class="d-flex flex-column align-items-center">
<img src="./img/kopi-luwak.webp" alt="arabica" />
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="radio"
value="kopi-luwak"
id="kopi-luwak"
name="cafe"
/>
<label class="form-check-label" for="kopi-luwak">
Kopi luwak
</label>
</div>
</div>
</div>
<h2 class="mt-3 mb-3">Options</h2>
<div class="form-group row">
<label for="lait" class="col-form-label col-6 col-md-3 pt-0"
>Nombre de laits:</label
>
<div class="col-md-9 col-6">
<input
type="range"
value="0"
class="custom-range"
id="lait"
name="lait"
min="0"
max="5"
step="1"
/>
<div class="range-steps">
<span>0</span>
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>5</span>
</div>
</div>
</div>
<div class="form-group row">
<label for="sucre" class="col-form-label col-6 col-md-3 pt-0"
>Nombre de sucres:</label
>
<div class="col-md-9 col-6">
<input
type="range"
value="0"
class="custom-range"
id="sucre"
name="sucre"
min="0"
max="3"
step="1"
/>
<div class="range-steps">
<span>0</span>
<span>1</span>
<span>2</span>
<span>3</span>
</div>
</div>
</div>
<div class="form-group row">
<label for="expresso" class="col-form-label col-6 col-md-3 pt-0"
>Doses d'expresso:</label
>
<div class="col-md-9 col-6">
<input
type="range"
value="0"
class="custom-range"
id="expresso"
name="expresso"
min="0"
max="3"
step="1"
/>
<div class="range-steps">
<span>0</span>
<span>1</span>
<span>2</span>
<span>3</span>
</div>
</div>
</div>
<button type="submit" class="btn col-4 col-md-2 btn-primary mb-3">
Commander
</button>
</form>
</div>
</div>
</body>
</html>