78 lines
3.3 KiB
HTML
78 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>BDE INFO - Kfet</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!--===============================================================================================-->
|
|
<link rel="icon" type="image/png" href="../static/images/icons/favicon.ico"/>
|
|
<!--===============================================================================================-->
|
|
<link rel="stylesheet" type="text/css" href="../static/vendor/bootstrap/css/bootstrap.min.css">
|
|
<!--===============================================================================================-->
|
|
<link rel="stylesheet" type="text/css" href="../static/fonts/font-awesome-4.7.0/css/font-awesome.min.css">
|
|
<!--===============================================================================================-->
|
|
<link rel="stylesheet" type="text/css" href="../static/vendor/animate/animate.css">
|
|
<!--===============================================================================================-->
|
|
<link rel="stylesheet" type="text/css" href="../static/vendor/css-hamburgers/hamburgers.min.css">
|
|
<!--===============================================================================================-->
|
|
<link rel="stylesheet" type="text/css" href="../static/vendor/select2/select2.min.css">
|
|
<!--===============================================================================================-->
|
|
<link rel="stylesheet" type="text/css" href="../static/css/util.css">
|
|
<link rel="stylesheet" type="text/css" href="../static/css/main.css">
|
|
<!--===============================================================================================-->
|
|
</head>
|
|
|
|
<body>
|
|
<div class="bg-contact2" id="main-container" style="background-image: url('../static/images/bg-01.jpg');">
|
|
<form id="stocks" class="container" action="#">
|
|
<div id="plat">
|
|
<h1>PLATS</h1>
|
|
<ul>
|
|
<li><input type="number" name="plat" id="sandwich">
|
|
<label for="sandwich">Sandwich</label></li>
|
|
<li><input type="number" name="plat" id="sandwichS">
|
|
<label for="sandwichS">Sandwich Surprise</label></li>
|
|
</ul>
|
|
</div>
|
|
<div id="ingredient">
|
|
<h1>INGREDIENTS</h1>
|
|
<ul>
|
|
<li><input type="number" name="ingredient" id="dinde">
|
|
<label for="dinde">Dinde</label></li>
|
|
<li><input type="number" name="ingredient" id="jambon">
|
|
<label for="jambon">Jambon</label></li>
|
|
</ul>
|
|
</div>
|
|
<div id="sauce">
|
|
<h1>SAUCES</h1>
|
|
<ul>
|
|
<li><input type="number" name="sauce" id="beurre">
|
|
<label for="beurre">Beurre</label></li>
|
|
<li><input type="number" name="sauce" id="beurreS">
|
|
<label for="beurreS">Beurre Salé</label></li>
|
|
</ul>
|
|
</div>
|
|
<div id="boisson">
|
|
<h1>BOISSONS</h1>
|
|
<ul>
|
|
<li><input type="number" name="boisson" id="coca">
|
|
<label for="coca">Coca-Cola</label></li>
|
|
<li><input type="number" name="boisson" id="icetea">
|
|
<label for="icetea">Ice-Tea</label></li>
|
|
</ul>
|
|
</div>
|
|
<div id="dessert">
|
|
<h1>DESSERTS</h1>
|
|
<ul>
|
|
<li><input type="number" name="dessert" id="beignetC">
|
|
<label for="beignetC">Beignet Chocolat</label></li>
|
|
<li><input type="number" name="dessert" id="beignetF">
|
|
<label for="beignetF">Beignet Framboise</label></li>
|
|
</ul>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|