43 lines
1.8 KiB
PHP
43 lines
1.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Statique</title>
|
|
<link rel="stylesheet" href="main.css">
|
|
</head>
|
|
<body>
|
|
|
|
<?php include "header.php"?>
|
|
|
|
<div class="main-body">
|
|
<div class="content">
|
|
<form class="recette-form" action="" method="post">
|
|
<div class="recette-form-add">
|
|
<div class="recette-form-group form-group">
|
|
<label for="nom">Titre : </label>
|
|
<input type="texte" class="form-control" id="recette-form-nom" name="nom" placeholder="Titre de votre recette">
|
|
</div>
|
|
<div class="recette-form-group form-group">
|
|
<label for="temps">Temps (en min) : </label>
|
|
<input type="texte" class="form-control" id="recette-form-temps" name="temps" placeholder="Temps de préparation">
|
|
</div>
|
|
<div class="recette-form-group form-group">
|
|
<label for="photo">Photo du plat : </label>
|
|
<input type="file" class="form-control" id="recette-form-photo" name="photo" placeholder="ajouter votre image">
|
|
</div>
|
|
<div class="recette-form-group form-group" id="recette-form-div-desc">
|
|
<label for="description">Description</label>
|
|
<input type="texte" class="form-control" id="recette-form-description" name="description" placeholder="Description...">
|
|
</div>
|
|
|
|
<button type='submit' class='btn btn-primary'>Confirmer</button>
|
|
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include "footer.php"?>
|
|
</body>
|
|
</html>
|