14 lines
294 B
Python
14 lines
294 B
Python
from django.contrib.auth.forms import UserCreationForm
|
|
|
|
from django.urls import reverse_lazy
|
|
|
|
from django.views import generic
|
|
|
|
class RegisterView(generic.CreateView):
|
|
|
|
form_class = UserCreationForm
|
|
|
|
success_url = reverse_lazy("login")
|
|
|
|
template_name = "registration/register.html"
|