10 lines
271 B
Python
10 lines
271 B
Python
from django.urls import reverse_lazy
|
|
from django.views import generic
|
|
|
|
from .forms import CustomUserCreationForm
|
|
|
|
|
|
class SignUp(generic.CreateView):
|
|
form_class = CustomUserCreationForm
|
|
success_url = reverse_lazy('login')
|
|
template_name = 'account/signup.html'
|