You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regarding forum post: https://getgrav.org/forum#!/plugin-development:form-nonce-on-multiple-form
The page does not pass html validation when more than one form is displayed on a page. This is because each form contains a hidden input of <input type="hidden" id="form-nonce" name="form-nonce" value="********" />.
ID's must be unique and therefore the id of form-nonce breaks validation as it appears more than once.
The text was updated successfully, but these errors were encountered:
Regarding forum post: https://getgrav.org/forum#!/plugin-development:form-nonce-on-multiple-form
The page does not pass html validation when more than one form is displayed on a page. This is because each form contains a hidden input of
<input type="hidden" id="form-nonce" name="form-nonce" value="********" />
.ID's must be unique and therefore the id of
form-nonce
breaks validation as it appears more than once.The text was updated successfully, but these errors were encountered: