1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-04 04:12:08 +02:00

Login is possible

This commit is contained in:
Yohann D'ANELLO
2020-04-29 15:29:01 +02:00
parent 93735da1a4
commit eead385218
19 changed files with 904 additions and 97 deletions

View File

@ -1,3 +1,10 @@
from django.shortcuts import render
from django.views.generic import CreateView
# Create your views here.
from .forms import SignUpForm
from .models import TFJMUser
class CreateUserView(CreateView):
model = TFJMUser
form_class = SignUpForm
template_name = "registration/signup.html"