Add basic backend logic and frontend templates/css

This commit is contained in:
Joey Yakimowich-Payne 2022-09-18 14:47:07 -06:00
commit 8864bacd1e
8 changed files with 324 additions and 22 deletions

14
html/game.html Normal file
View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Rock Paper Scissors</title>
</head>
<link href="{{ url_for('static', path='/css/bulma.min.css') }}" rel="stylesheet">
<body>
<div>
Hello {{ game.player1.name }} and {{ game.player2.name }}
</div>
<script type="text/javascript">
</script>
</body>
</html>