Add basic backend logic and frontend templates/css
This commit is contained in:
parent
03fd03af5f
commit
8864bacd1e
8 changed files with 324 additions and 22 deletions
14
html/game.html
Normal file
14
html/game.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue