-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (90 loc) · 5.23 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
<!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">
<link rel="stylesheet" href="./css/style.css">
<script src="https://kit.fontawesome.com/c7d3dcb5af.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Les Petits Plats</title>
</head>
<body>
<!-- Utilizzare dei tag semantici -->
<div id="main">
<header class="container-fluid">
<div id="logo" class="row">
<img class="m-auto" src="./logo/Vector.png" alt="logo les petits plats">
</div>
<div id="title" class="row">
<h1 class="col text-center">Les Petits Plats</h1>
</div>
<div class="row">
<div id="search" class="col input-group">
<label for="search-input">#</label>
<input id="search-input" type="search" class="form-control border-0 " placeholder="Rechercher une recette" aria-label="Search" aria-describedby="search-addon" />
<span class="input-group-text border-0" id="search-addon">
<em class="fas fa-search"></em>
</span>
</div>
</div>
<div id="filter-div" class="row"></div>
<div id="dropdown_group" class="row mt-4 col-md-6">
<div id="first_dropdown" class="col m-2 dropdown">
<button class="btn text-light" type="button" name="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Ingredients
<span class="ml-4"><em class="fa-solid fa-chevron-down"></em></span>
</button>
<div id="ingredients-menu" class="dropdown-menu" aria-labelledby="first_dropdown">
<div class="form-outline">
<label for="form1">#</label>
<input type="search" id="form1" name="filter" class="form-control" placeholder="Rechercher" aria-label="Search" />
</div>
<div id="ingredients-dropdown">
</div>
<!-- Ingredients in Js -->
</div>
</div>
<div id="second_dropdown" class="col m-2 dropdown">
<button class="btn text-light" type="button" name="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Appareil
<span class="ml-4"><em class="fa-solid fa-chevron-down"></em></span>
</button>
<div id="appliance-menu" class="dropdown-menu" aria-labelledby="second_dropdown">
<div class="form-outline">
<label for="form2">#</label>
<input type="search" id="form2" name="filter" class="form-control" placeholder="Rechercher" aria-label="Search" />
</div>
<div id="appliance-dropdown">
</div>
<!-- Appliance in Js-->
</div>
</div>
<div id="third_dropdown" class="col m-2 dropdown">
<button class="btn text-light" type="button" name="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
ustensiles
<span class="ml-4"><em class="fa-solid fa-chevron-down"></em></span>
</button>
<div id="ustensils-menu" class="dropdown-menu" aria-labelledby="third_dropdown">
<div class="form-outline">
<label for="form3">#</label>
<input type="search" id="form3" name="filter" class="form-control" placeholder="Rechercher" aria-label="Search" />
</div>
<div id="ustensils-dropdown">
</div>
<!-- Ustensils in Js-->
</div>
</div>
</div>
</header>
<div id="recipes_cards" class="container-fluid d-flex flex-wrap">
<!-- card template in js-->
</div>
</div>
<script src="./script/pages/index.js"></script>
<script src="./script/factory/recipesFactory.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>