Templates hinzufuegen; Spiel beitreten seite stylen

This commit is contained in:
juhnsa
2025-03-12 20:16:00 +01:00
parent 46634b1e1c
commit 13cbaaa6dc
8 changed files with 69 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
from django.shortcuts import render
# Create your views here.
def lobby(request):
return render(request, 'play/lobby.html')
def join_game(request):
return render(request, 'play/join_game.html')