8 lines
274 B
Python
8 lines
274 B
Python
from django.views import generic
|
|
from django.urls import reverse_lazy
|
|
from .forms import RegistrationForm
|
|
|
|
class Registration(generic.CreateView):
|
|
form_class = RegistrationForm
|
|
success_url = reverse_lazy('login')
|
|
template_name = 'registration/registration.html'
|