-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-your-cake-fr.html
More file actions
259 lines (259 loc) · 11.1 KB
/
create-your-cake-fr.html
File metadata and controls
259 lines (259 loc) · 11.1 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Bring your own creativity" />
<meta name="author" content="Feng Han" />
<title>Chez Feng | créez votre gâteau</title>
<!-- main css link -->
<link rel="stylesheet" href="styles/main.css" />
<!-- favicon -->
<link rel="shourtcut icon" type="image/png" href="images/cupcake.png" />
</head>
<body>
<div class="container">
<div id="info-panel">
<p>275 Rue Lakeshore Road, Sainte-Anne-de-Bellevue, QC H9X 3L9</p>
<p><span class="hidden">|</span>Chaque Jour 7AM - 6PM</p>
</div>
<!-- nav starts -->
<nav id="nav">
<div id="main-nav" class="hidden">
<p><a href="index.html" class="logo-left">CHEZ FENG.</a></p>
<ul class="uppercase" id="menu">
<li><a href="shop-fr.html">Achetez maintenant</a></li>
<li><a href="create-your-cake-fr.html">créez votre gâteau</a></li>
<li><a href="recipe-fr.html">recette de la semaine</a></li>
<li><a href="about-fr.html">à propos</a></li>
<li><a href="contact-fr.html">nous contacter</a></li>
</ul>
<ul id="languages">
<li><a href="create-your-cake.html">EN</a></li>
<li>|</li>
<li><a href="create-your-cake-fr.html">FR</a></li>
</ul>
</div>
<div id="mobile-nav">
<p><a href="index.html" class="logo-right">CHEZ FENG.</a></p>
<i class="fas fa-bars"></i>
</div>
</nav>
<!-- nav ends -->
<header id="cake-header" class="colored-header">
<h1 class="uppercase">CRÉEZ VOTRE GÂTEAU</h1>
<P class="uppercase">APPORTEZ VOTRE CRÉATIVITÉ</P>
</header>
<img class="zigzag-line" src="images/black-zig-zag.png" alt="Black zigzag." title="Black zigzag." />
<!-- main start -->
<main id="cake-main">
<div id="slogan-cake">
<p>Sélectionnez vos ingrédients <br>
Choisissez les décorations <br>
Créez un gâteau de votre propre style</p>
</div>
<form id="create-your-cake-form" method="POST" action="/thank-you.html" autocomplete="on" autocapitalize="words">
<fieldset id="main-form-create-cake">
<fieldset id="cake-details">
<table>
<tr class="cake-form-title">
<td colspan="2">
Détails du gâteau
</td>
</tr>
<tr><br></tr>
<tr>
<td>
<label for="weight">le Poids(lb)</label>
</td>
<td>
<input type="text" id="weight" name="weight" maxlength="4" autofocus required>
</td>
</tr>
<tr>
<td>
<label for="flavor">Saveur</label>
</td>
<td>
<select name="Flavor" id="flavor" required>
<option value="vanila">Vanille</option>
<option value="chocolate">Chocolat</option>
<option value="pistachio">Pistache</option>
<option value="strawberry">Fraise</option>
<option value="salted-buttercream">Crème au beurre salée</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="extra-decors">Décors supplémentaires</label>
</td>
<td id="decor">
<input type="checkbox" id="decor1" value="berries">
<label for="decor1">Baies</label><br>
<input type="checkbox" id="decor2" value="choco-bar">
<label for="decor2">Barre de choco</label><br>
<input type="checkbox" id="decor3" value="macaron">
<label for="decor3">Macaron</label><br>
<input type="checkbox" id="decor4" value="flowers">
<label for="decor4">Fleurs</label><br>
<input type="checkbox" id="decor5" value="sparcle-candies">
<label for="decor5">Bonbons scintillants</label><br>
<input type="checkbox" id="decor6" value="ferrero-rocher">
<label for="decor6">Ferrero Rocher</label><br>
<input type="checkbox" id="decor7" value="birthday-candles">
<label for="decor7">Bougies d'anniversaire</label><br>
<input type="checkbox" id="decor8" value="paper-banner">
<label for="decor8">Bannière en papier</label>
</td>
</tr>
<tr>
<td>
<label for="comments">Commentaires & Allergies</label>
</td>
<td>
<input type="text" id="comments" name="comments" maxlength="500">
</td>
</tr>
</table>
</fieldset>
<fieldset id="contact-info">
<table>
<tr class="cake-form-title">
<td colspan="2">
Informations de contact
</td>
</tr>
<tr><br></tr>
<tr>
<td>
<label for="full-name">Nom</label>
</td>
<td>
<input type="text" id="full-name" name="full-name" maxlength="50" required>
</td>
</tr>
<tr>
<td>
<label for="phone">Téléphone</label>
</td>
<td>
<input type="text" id="phone" name="phone" size="10" minlength="10" maxlength="10" required>
</td>
</tr>
<tr>
<td>
<label for="email">Email</label>
</td>
<td>
<input type="email" id="email" name="email" placeholder="your_email@example.com" required>
</td>
</tr>
<tr>
<td>
<label for="address">Adresse</label>
</td>
<td>
<input type="text" id="address" name="address" maxlength="50" required>
</td>
</tr>
<tr>
<td colspan="2">
<label for="schedule">Quand livrer/retrait</label>
</td>
</tr>
<tr>
<td></td>
<td><input type="text" id="schedule" name="schedule" required></td>
</tr>
<tr>
<td></td>
<td>
<input type="radio" id="delivery" name="deliv-type">
<label for="delivery">Livraison</label>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="radio" id="pickup" name="deliv-type">
<label for="pickup">Retrait en magasin</label>
</td>
</tr>
<tr>
<td colspan="2">
<label for="sample-image">Téléchargez votre exemple d'image (facultatif)</label>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="text" id="sample-image" name="sample-image">
</td>
</tr>
</table>
</fieldset>
</fieldset>
<br>
<br>
<div id="submit-cake">
<input type="submit" class="button uppercase" value="obtenir le prix">
</div>
<br>
<br>
<br>
</form>
</main>
<!-- main ends -->
<!-- footer starts -->
<footer id="footer">
<div id="footer-wrapper">
<div id="address">
<span>Adresse</span>
<address>
<p>
275 Rue Lakeshore Road<br />
Sainte-Anne-de-Bellevue<br />
QC H9X 3L9<br />
</p>
</address>
</div>
<div id="hours">
<span>Les heures</span>
<p>
Lundi - Samedi : 7AM - 6PM<br />
Dimanche : 7AM - 4PM
</p>
</div>
<div id=contact>
<span>Contact</span>
<p>
ActuallyIAmWebDev@ChezFeng.com<br />
514 123 1234
</p>
</div>
<div id="subscribe">
<span>Recevez notre recette de la semaine!</span>
<input type="text" placeholder="Enter your email" />
<input class="uppercase" type="submit" value="subscribe" />
<div id="social-icons">
<i class="fab fa-facebook-square">
<a href="#"></a>
</i>
<i class="fab fa-instagram-square">
<a href="#"></a>
</i>
<i class="fab fa-twitter-square"></i>
<a href="#"></a>
</div>
</div>
</div>
<div id="copyright">
<p>Copyright 2021 © Créé par l'équipe FEBM avec amour ❤️</p>
</div>
</footer>
<!-- footer ends -->
</div>
</body>
</html>