created login django app

This commit is contained in:
CDaut 2022-05-29 17:50:26 +02:00 committed by CDaut
parent c208f4adff
commit 22b616082b
13 changed files with 65 additions and 20 deletions

View file

@ -0,0 +1,6 @@
from django.shortcuts import render
# Create your views here.
def loginview(request):
return render(request, 'login/login.html')