Skip to content

Commit 8601927

Browse files
author
Lucie Laporte
committed
add aria-hidden to exlude honeypot field
1 parent 55606aa commit 8601927

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{% if enabled %}
2-
<input type="text" name="{{ honeypot_name_field }}" id="{{ honeypot_name_field }}" data-{{ honeypot_name_field }} tabindex="-1" autocomplete="off">
3-
<input type="hidden" name="{{ honeypot_time_field }}" id="{{ honeypot_time_field }}" data-{{ honeypot_time_field }} tabindex="-1" autocomplete="off" value="{{ time }}">
2+
<input type="text" name="{{ honeypot_name_field }}" id="{{ honeypot_name_field }}" data-{{ honeypot_name_field }} tabindex="-1" autocomplete="off" aria-hidden="true" >
3+
<input type="hidden" name="{{ honeypot_time_field }}" id="{{ honeypot_time_field }}" data-{{ honeypot_time_field }} tabindex="-1" autocomplete="off" value="{{ time }}" aria-hidden="true" >
44
{% endif %}

0 commit comments

Comments
 (0)