adding invisible honeypot field

This commit is contained in:
Adrian Amaglio 2020-09-16 14:26:40 +02:00
parent d1244304b9
commit 473cc8c876
2 changed files with 8 additions and 0 deletions

View File

@ -122,6 +122,10 @@
<label for="nom">Nom</label>
<input type="text" name="nom" id="name" />
</div>
<div class="field_prenom">
<label for="prenom">Prénom</label>
<input type="text" name="prenom" id="name" />
</div>
<div class="field">
<label for="objet">Sujet</label>
<input type="text" name="objet" id="subject" />

View File

@ -549,3 +549,7 @@ main footer p, body > footer p {
width: 100%;
}
}
.field_prenom {
display: none;
}