I'm building my own form to git rid of help text, As I can't change the builtin form in django to remove the help text.
So far so good, but I can't style the error messages.
It's showing basic ul and il style.
How can I do it ? Thanks.
<form class="" method="post">
{% csrf_token %}
<label for="id_new_password1"> Senha </label><br>
<div class="">
<input required text="password" class="form-control" placeholder="Senha" name="new_password1"/>
{{ form.new_password1.errors }}
</div><br>
<label for="id_new_password2"> Confirmar senha </label><br>
<div class="">
<input required text="password" class="form-control" placeholder="Confirmar senha" name="new_password2"/>
{{ form.new_password2.errors }}
</div><br>
<input type="submit" class="btn btn-primary col-sm-12" value="Confirmar" />
</form>