diff --git a/accounts/views.py b/accounts/views.py index e33ab58..a54548d 100644 --- a/accounts/views.py +++ b/accounts/views.py @@ -6,5 +6,5 @@ from .forms import CustomUserCreationForm class SignUpView(CreateView): form_class = CustomUserCreationForm - sucess_url = reverse_lazy("login") + success_url = reverse_lazy("login") template_name = "registration/signup.html"