-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
544 lines (475 loc) · 16.1 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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
>
<title>Creare reteta</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"
>
<link
rel="stylesheet"
href="app.css"
>
</head>
<body class="text-dark">
<header>
<nav class="navbar navbar-expand-lg bg-white">
<div class="container-fluid">
<a
class="navbar-brand"
title="Formular reteta"
href="/"
>Formular reteta</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse"
id="navbarSupportedContent"
>
Menu
</div>
</div>
</nav>
</header>
<main class="mt-lg-5 pt-lg-3">
<header class="p-0 px-lg-3 container text-center">
<h1 class="d-none d-lg-block">Formular reteta</h1>
<div class="bg-light py-3">
<ul class="step-progress">
<li class="step step-complete">
<button
title="Pas reteta"
type="button"
>
Reteta
</button>
</li>
<li class="step step-active">
<button
title="Pas ingrediente"
type="button"
>
Ingredient
</button>
</li>
<li class="step step-incomplete">
<button
title="Pas pasi"
type="button"
>
Pasi
</button>
</li>
</ul>
</div>
</header>
<form class="mt-3 container bg-white my-lg-4 pt-lg-3 pb-5">
<div class="row pb-5 tab-content tab-step-1">
<div class="col-12 col-lg-6">
<!-- recipe meta fieldset -->
<fieldset class="d-flex flex-column gap-4 mb-4">
<div>
<label
for="recipe-name"
class="mb-2"
>Numele retetei* </label>
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="Supa de pui"
name="recipe-name"
id="recipe-name"
required
>
</div>
</div>
<div>
<label
for="recipe-short-description"
class="mb-2"
>Descriere scurtă*</label>
<div class="input-group">
<textarea
class="form-control"
placeholder="Leave a comment here"
id="recipe-short-description"
name="recipe-short-description"
placeholder="Va fi vizibilă cititorilor înainte de a deschide pagina rețetei"
required
></textarea>
</div>
</div>
<div>
<label
for="recipe-long-description"
class="mb-2"
>Descrierea rețetei*</label>
<textarea
name="recipe-long-description"
id="recipe-long-description"
placeholder="Povestește despre această rețetă"
class="form-control"
required
></textarea>
</div>
</fieldset>
<!-- / recipe meta fieldset -->
<!-- author fieldset -->
<fieldset class="d-flex flex-column gap-4">
<div class="d-flex gap-2 align-items-center toggle">
<input
class="form-check-input mt-0 pointer"
type="checkbox"
name="add-author"
id="add-author"
value="add-author"
aria-label="Adaugă autor rețetă (opțional)"
>
<label
for="add-author"
class="flex-grow-1 pointer"
>Adaugă autor rețetă (opțional)</label>
</div>
<div class="d-none flex-column gap-4">
<div>
<label for="recipe-author-name">Numele și prenumele autorului*</label>
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="ex. Jane Doe"
name="recipe-author-name"
id="recipe-author-name"
required
>
</div>
</div>
<div>
<label for="recipe-author-email">E-mailul autorului*</label>
<div class="input-group">
<input
type="email"
class="form-control"
placeholder="ex. janedoe@email.com"
name="recipe-author-email"
id="recipe-author-email"
required
>
</div>
</div>
<div>
<label for="recipe-author-site">Website-ul autorului (opțional)</label>
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="ex. janedoe.com"
name="recipe-author-site"
id="recipe-author-site"
>
</div>
</div>
</div>
</fieldset>
<!-- / author fieldset -->
</div>
<div class="col-12 col-lg-6 mt-4 mt-lg-0">
<div class="w-lg-75">
<!-- image fieldset -->
<fieldset class="d-flex flex-column gap-4">
<label for="recipe-image">Imaginea principală*</label>
<label class="image-upload-placeholder d-flex justify-content-center align-items-center pointer">
<input
type="file"
name="recipe-image"
id="recipe-image"
class="d-none"
required
>
<span class="text-center">
<i class="bi bi-file-earmark-plus"></i>
<span class="d-block">Încarcă o poză</span>
</span>
</label>
</fieldset>
<!-- / image fieldset -->
</div>
</div>
</div>
<div class="row pb-5 flex-lg-row-reverse tab-content tab-step-2">
<div class="col-12 col-lg-6">
<h6 class="mb-3 d-none d-lg-block">Listă ingrediente</h6>
<ul class="list-group list-group-flush border-bottom">
<li class="list-group-item d-flex justify-content-between align-items-center">
<div>
<h6>Pulpă de pui</h6>
<span>500 grame</span>
</div>
<div>
<button
type="button"
title="Elimina ingredient"
class="border-0 bg-transparent text-danger fs-4"
><i class="bi bi-trash"></i></button>
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<div>
<h6>Pulpă de pui</h6>
<span>500 grame</span>
</div>
<div>
<button
type="button"
title="Elimina ingredient"
class="border-0 bg-transparent text-danger fs-4"
><i class="bi bi-trash"></i></button>
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<div>
<h6>Pulpă de pui</h6>
<span>500 grame</span>
</div>
<div>
<button
type="button"
title="Elimina ingredient"
class="border-0 bg-transparent text-danger fs-4"
><i class="bi bi-trash"></i></button>
</div>
</li>
</ul>
</div>
<div class="col-12 col-lg-6 mt-4 mt-lg-0">
<!-- add ingredient -->
<fieldset class="d-none d-lg-block">
<header class="d-flex d-lg-none justify-content-between align-items-center">
<label class="h5 fw-normal m-0">Adaugă ingredient</label>
<button
type="button"
class="btn-close"
title="Inchide"
></button>
</header>
<div>
<div class="mb-4 row">
<div class="col-12">
<label
for="ingredient-name"
class="mb-2"
>Numele ingredient* </label>
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="ex. Pulpă de pui"
name="ingredient-name"
id="ingredient-name"
required
>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div>
<label
for="ingredient-quantity"
class="mb-2"
>Cantitate*</label>
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="ex. Pulpă de pui"
name="ingredient-quantity"
id="ingredient-quantity"
required
>
</div>
</div>
</div>
<div class="col-6">
<div>
<label
for="ingredient-measurement"
class="mb-2"
>Unitate de măsură*</label>
<div class="input-group">
<select
class="form-select"
name="ingredient-measurement"
id="ingredient-measurement"
>
<option value="g">Grame (g)</option>
<option value="kg">Kilograme (kg)</option>
<option value="ml">Mililitri (ml)</option>
<option value="l">Litri (l)</option>
</select>
</div>
</div>
</div>
</div>
</div>
</fieldset>
<!-- / add ingredient -->
<div class="text-center text-lg-start mt-lg-4">
<button
type="button"
class="btn btn-outline-success"
title="Adauga ingredient"
>
<i class="bi bi-plus"></i>
Adauga ingredient
</button>
</div>
</div>
</div>
<div class="row pb-5 flex-lg-row-reverse tab-content tab-step-3">
<div class="col-12 col-lg-6">
<h6 class="mb-3 d-none d-lg-block">Listă pași</h6>
<ul class="list-group list-group-flush border-bottom">
<li class="list-group-item d-flex justify-content-between align-items-center">
<div>
<h6>Aduceți apa la fiert</h6>
<span>
Puneți pe foc 2 litri de apă și fierbeți
până începe să clocotească
</span>
</div>
<div>
<button
type="button"
title="Elimina ingredient"
class="border-0 bg-transparent text-danger fs-4"
><i class="bi bi-trash"></i></button>
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<div class="w-75">
<h6>Fierbeți pulpele de pui</h6>
<span>
Se adaugă sare și se pun la fiert pulpele
pentru 15 minute
</span>
</div>
<div>
<button
type="button"
title="Elimina ingredient"
class="border-0 bg-transparent text-danger fs-4"
><i class="bi bi-trash"></i></button>
</div>
</li>
</ul>
</div>
<div class="col-12 col-lg-6 mt-4 mt-lg-0">
<!-- add step -->
<fieldset class="d-none d-lg-block">
<header class="d-flex d-lg-none justify-content-between align-items-center">
<label class="h5 fw-normal m-0">Adaugă pas</label>
<button
type="button"
class="btn-close"
title="Inchide"
></button>
</header>
<div>
<div class="mb-4 row">
<div class="col-12">
<label
for="step-name"
class="mb-2"
>Titlu pas* </label>
<div class="input-group">
<input
type="text"
class="form-control"
placeholder="ex. Fierbe pulpele la foc mic"
name="step-name"
id="step-name"
required
>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div>
<label
for="ingredient-quantity"
class="mb-2"
>Descriere pas*</label>
<div class="input-group">
<textarea
name="ingredient-quantity"
id="ingredient-quantity"
class="form-control"
placeholder="Descrie acțiunile de urmat pentru a finaliza pasul"
required
></textarea>
</div>
</div>
</div>
</div>
</div>
</fieldset>
<!-- / add step -->
<div class="text-center text-lg-start mt-lg-4">
<button
type="button"
class="btn btn-outline-success"
title="Adauga pasul x"
>
<i class="bi bi-plus"></i>
Adauga pasul x
</button>
</div>
</div>
</div>
<footer class="py-3 form-footer">
<div class="row">
<div class="col-12 col-lg-4 offset-lg-4 px-4">
<button
type="button"
title="Urmatorul pas"
class="btn btn-success w-100"
disabled
>Pasul urmator</button>
</div>
</div>
</footer>
</form>
</main>
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"
></script>
</body>
</html>