Add models, views and forms for authentication

This commit is contained in:
2022-07-21 13:45:44 +01:00
parent adf7c0604a
commit 4efc10a4f9
9 changed files with 297 additions and 0 deletions

29
core/views.py Normal file
View File

@@ -0,0 +1,29 @@
from django.contrib.auth.mixins import LoginRequiredMixin
from django.shortcuts import render
from django.urls import reverse_lazy
from django.views import View
from django.views.generic.edit import CreateView
from core.forms import NewUserForm
# Create your views here
class Home(LoginRequiredMixin, View):
template_name = "index.html"
def get(self, request, *args, **kwargs):
return render(request, self.template_name)
class Profile(LoginRequiredMixin, View):
template_name = "profile.html"
def get(self, request, *args, **kwargs):
return render(request, self.template_name)
class Signup(CreateView):
form_class = NewUserForm
success_url = reverse_lazy("login")
template_name = "registration/signup.html"