Re: password reset pages are not showing customizing html file

2020-05-14 Thread Ali Ahammad
hello guys i have tried email_template_name = 'registration/password_reset_email.html', success_url = reverse_lazy('registration:password_reset_done') but still no luck. i tried to edit template_name='accounts/reset_password.html, seems like django is reaching out to this hml file. but when i

password reset pages are not showing customizing html file

2020-05-13 Thread Ali Ahammad
hello everyone i am trying to make a blog where i am trying to customize password reset forms. here is my bloggapp/urls.py: from django.contrib import admin from django.urls import path, include from django.views.generic.base import TemplateView from django.contrib.auth import views as auth_vi