From 143beaee9b94b487e9b7e01d39c224662c2dd0dc Mon Sep 17 00:00:00 2001 From: Lucas Schumacher Date: Sat, 6 Jul 2024 15:39:29 -0400 Subject: [PATCH] Fix typo that breaks signup page --- accounts/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"