1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-08 14:10:20 +02:00
Files
plateforme-tfjm2/apps/member/views.py
Yohann D'ANELLO eead385218 Login is possible
2020-04-29 15:29:01 +02:00

11 lines
236 B
Python

from django.views.generic import CreateView
from .forms import SignUpForm
from .models import TFJMUser
class CreateUserView(CreateView):
model = TFJMUser
form_class = SignUpForm
template_name = "registration/signup.html"