14 lines
363 B
HTML
14 lines
363 B
HTML
<!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>
|