Marin/templates/modification.html

17 lines
598 B
HTML

<!DOCTYPE html>
<head>
<title>{{nom}} {{prenom}} - Sauveuteurs du dunkerquois</title>
{% include 'head.html' %}
</head>
<body>
{% include "smallheader.html" %}
<h1>Proposer une modification :</h1>
<form action="modification.php" method="post">
<input type="text" name="nom" placeholder="Votre nom (facultatif)">
<input type="text" name="prenom" placeholder="Votre prénom (facultatif)">
<input type="text" name="article" placeholder="Nom de l'article à modifier" required>
<input type="text" name="modif" placeholder="Modification suggérée" required>
</form>
</body>
</html>