19 lines
892 B
HTML
19 lines
892 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 class="form-pad" method="post">
|
|
Votre nom (facultatif) : <input type="text" name="nom" placeholder="Votre nom"><br><br>
|
|
Votre prénom (facultatif) : <input type="text" name="prenom" placeholder="Votre prénom (facultatif)"><br><br>
|
|
Votre adresse e-mail (facultatif) : <input type="email" name="email" placeholder="Votre adresse e-mail (facultatif)"><br><br>
|
|
Nom de l'article à modifier : <input type="text" name="article" placeholder="Nom de l'article à modifier" required><br><br>
|
|
Modification suggérée :<br><textarea name="modif" placeholder="Modification suggérée" required></textarea><br><br>
|
|
<input type="submit" value="Envoyer">
|
|
</form>
|
|
</body>
|
|
</html>
|