11 lines
322 B
Python

from django.shortcuts import render
from django.urls import reverse_lazy
from django.views.generic.edit import CreateView
from .forms import CustomUserCreationForm
class SignUpView(CreateView):
form_class = CustomUserCreationForm
sucess_url = reverse_lazy("login")
template_name = "registration/signup.html"