diff --git a/apps/api_auth/views.py b/apps/api_auth/views.py index 481b465..361a963 100644 --- a/apps/api_auth/views.py +++ b/apps/api_auth/views.py @@ -90,7 +90,7 @@ class PasswordResetConfirmTemplateView(TemplateView): View to confirm the password reset. """ - template_name = "registration/password_reset_confirm.html" + template_name = "api_auth/password_reset_confirm.html" def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) diff --git a/templates/registration/password_reset_confirm.html b/templates/api_auth/password_reset_confirm.html similarity index 100% rename from templates/registration/password_reset_confirm.html rename to templates/api_auth/password_reset_confirm.html diff --git a/templates/registration/password_reset_complete.html b/templates/registration/password_reset_complete.html deleted file mode 100644 index 7d1d732..0000000 --- a/templates/registration/password_reset_complete.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %} -
-{% endblock %} - -{% block content %} - -{% translate "Your password has been set. You may go ahead and log in from the app now." %}
- -{% endblock %}