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:
@ -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"
|
||||
|
Reference in New Issue
Block a user