Try to hide the honeypot field a bit more

This commit is contained in:
Yannik Rödel 2022-06-20 12:26:39 +02:00
parent 3ea761e9f9
commit 3a3dfca20d

View file

@ -75,7 +75,7 @@ match os.environ.get("REQUEST_METHOD", "").upper():
print(f'<label class="form-input">')
print(f'<span>Bitte lasse dieses Feld leer:</span>')
print(f'<input type="text" name="{HONEYPOT_FIELD_NAME}" value="" placeholder="Hier nichts eingeben." />')
print(f'<input type="text" name="{HONEYPOT_FIELD_NAME}" value="" placeholder="Hier nichts eingeben." tabindex="-1" autocomplete="off" />')
print(f'</label>')
print(f'<script type="text/javascript">')