Added User Authentification and static/css/login.css

This commit is contained in:
2025-01-17 17:48:55 +01:00
parent 34af915fe9
commit 7cbd2fe8dd
4 changed files with 35 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
from django.shortcuts import render
from django.contrib.auth.decorators import login_required
# Create your views here.
@login_required
def home(request):
return render(request, 'accounts/home.html')