This repository has been archived on 2025-04-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GestionaleITSPy/GestionaleITS/accounts/views.py
2024-10-09 21:10:49 +02:00

12 lines
359 B
Python

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"