2021-12-03 05:27:39 +01:00
|
|
|
<!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>
|
2021-12-03 05:47:45 +01:00
|
|
|
<input type="submit" value="Envoyer">
|
2021-12-03 05:27:39 +01:00
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|