Re: Registration form in template

2024-03-19 Thread Clive Bruton
If you want to override what the form is showing, then you can build your own template and only include the elements that you wish to show. Rather than use: {{ form }} use: {{ form.field_name }} or break it down further, like: {{ form.field_name.html_name }} etc

Registration form in template

2024-03-17 Thread 'Simon Connah' via Django users
I have a register user template with a form which works well but I have a problem where there is lots of other text next to the form elements such as password length and what characters need to go in a password. Is their a reasonable way to hide that text or do I need to do it with JavaScript?