Honeypot form field replacement

When a contact form has a honeypot input element, the input element is replaced with:

<input type='hidden' name='form-name' value='contact' />

Although the closing slash is optional in HTML5, its presence causes an INFO message during validation of the HTML markup.

I suggest replacing that with:

<input type='hidden' name='form-name' value='contact'>

Thanks for the suggestion! Appreciate it. We think it won’t impact the behavior of your form - so we may not update it, but we did get a bug report filed for our dev team to consider!