[Answered ]-Django UserCreationForm turning popup validation errors into in-line errors

1👍

You can add "novalidate" to your form tag to remove the browser validation (pop up thingy). Then the Django form validation can show itself.

<form action="" method="" novalidate>

Leave a comment