mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 11:22:24 +02:00
9 lines
295 B
Python
9 lines
295 B
Python
from django.contrib.auth.forms import UserCreationForm
|
|
from django.urls import reverse_lazy
|
|
from django.views import generic
|
|
|
|
|
|
class SignUpView(generic.CreateView):
|
|
form_class = UserCreationForm
|
|
success_url = reverse_lazy("accounts:login")
|
|
template_name = "registration/signup.html"
|