fix: reset email. set HTML email template #6

Closed
leo wants to merge 2 commits from reset-password-implementation into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9996234462 - Show all commits

View File

@ -55,7 +55,7 @@ class GASLoginView(GASContextMixin, LoginView):
class GASPasswordResetView(GASContextMixin, PasswordResetView): class GASPasswordResetView(GASContextMixin, PasswordResetView):
template_name = "gas/reset.html" template_name = "gas/reset.html"
email_template_name = "email/password_reset_email.html" html_email_template_name = "registration/password_reset_email.html"
success_url = reverse_lazy("gas:password_reset_done") success_url = reverse_lazy("gas:password_reset_done")