add: login

This commit is contained in:
starnakin 2023-10-24 17:06:43 +02:00
parent cb010470a9
commit 3e7a9c9b00
2 changed files with 30 additions and 1 deletions

View File

@ -0,0 +1,8 @@
<html>
<form method='post'>
{% csrf_token %}
<input type="text" name="username" placeholder="username">
<input type="text" name="password" placeholder="password">
<input type='submit'>
</form>
</html>

View File

@ -4,9 +4,30 @@ from django.views import View
# Create your views here.
from django.http import HttpResponse
from django.contrib.auth.models import User
from django.db.models.query import QuerySet
class Login(View):
pass
def get(self, request):
return render(request, "login.html")
def post(self, request):
username = request.POST.get("username")
if (username == None):
return HttpResponse("error: username or password invalid")
password = request.POST.get("password")
if (password == None):
return HttpResponse("error: username or password invalid")
query: QuerySet = User.objects.filter(username=username)
if (not query.exists()):
return HttpResponse("error: username or password invalid")
user: User = User.objects.get(username=username)
if (not user.check_password(password)):
return HttpResponse("error: username or password invalid")
return HttpResponse("ok: account valid")
class Register(View):
def get(self, request):