Version 1.0
This commit is contained in:
12
GestionaleITS/accounts/views.py
Normal file
12
GestionaleITS/accounts/views.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.contrib.auth.forms import UserCreationForm
|
||||
from django.shortcuts import render
|
||||
from django.urls import reverse_lazy
|
||||
from django.views.generic import CreateView
|
||||
|
||||
|
||||
# Create your views here.
|
||||
|
||||
class RegistrationView(CreateView):
|
||||
form_class = UserCreationForm
|
||||
success_url = reverse_lazy("login")
|
||||
template_name = "accounts/registration.html"
|
||||
Reference in New Issue
Block a user