[Fixed]-UserCreationForm show error when fields are empty

1👍

You need to turn off the behaviour in the HTML itself, by using novalidate in the form element.

<form action="whatever" method="POST" novalidate>
    ...
</form>

Leave a comment