10 lines
270 B
Python
10 lines
270 B
Python
from django.urls import reverse_lazy
|
|
from django.views.generic import CreateView
|
|
from backend.accounts.forms import SignupForm
|
|
|
|
|
|
class SignUpView(CreateView):
|
|
form_class = SignupForm
|
|
success_url = reverse_lazy('login')
|
|
template_name = 'accounts/signup.html'
|