stuck on think how can i style django built in auh views with bootstrap

how can we bootstrap the django built in auth view like password change, reset, confirm. i have created custom form for registation and login and had control over the design elements but with auth views its my understanding that i cant control the design part. Any suggestion please, by the way i have been studying django for last 4 years, this is my first creating something in it, and this is my first joining the django forum and posting on it. Any suggestion are welcome to style django built in auth views.

There are multiple ways of doing it. Your options for this are covered in the docs at Authentication Views. Fundamentally, styling the password reset view is no different than styling any of the other authentication views.

I am sorry, i am not hardcore coder, infact i am below average code, it take time for me to understand things, but once i get the hang of it, it sticks. I have read the documentation sir, and honsetly i couldnt find anything helpful, thats why i approached the community searching for the answer. It would be very helpful sir, if you can write me few of the solutions that works. Thanks

You stated above that you’ve already done this for your registration and login pages.

There’s no difference between what you did for those and what you need to do here.

but i made a instance of those, then i could bootstrap them. here auth views only give me the {{ form}} that’s it.

this is making my head spin for last 3 days, for registration form, i could customize or the UserCreationForm, For login, i am using the name=username, name=password, values from bootstrap, but how do i style the password change or reset or confirmations, here i am stuck.

Please be very specific with what it is that you want to do to the password change form.

i want to style it with bootstrap form, how can i do that? with password change, password_reset and with other built in auth views.

You need to be more specific. Provide the details of exactly what it is you’re wanting to do.

i want to render each form field with bootstrap. is this close?

i made custom registration and login forms, so i when created the registration forms i add the bootstrap class in the widgets in the forms.py, now with django built in auth views, i import the views in my app urls.py file and then i simply add {{ form }} in the html file. Now from here i dont know how to style this {{ form}}.

can you tell me how can i specify more the django topic i am asking for?