Fix typo that breaks signup page

This commit is contained in:
Lucas Schumacher 2024-07-06 15:39:29 -04:00
parent 589d109cec
commit 143beaee9b

View File

@ -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"