]> git.cworth.org Git - empires-server/blob - templates/tictactoe-game.html
Add some autofocus attributes to several forms
[empires-server] / templates / tictactoe-game.html
1 {% extends "base.html" %}
2
3 {% block head %}
4 <link rel="stylesheet" href="/tictactoe/tictactoe.css" type="text/css" />
5
6 <script src="/react.js"></script>
7 <script src="/react-dom.js"></script>
8 <script type="module" src="/tictactoe/tictactoe.js"></script>
9 {% endblock %}
10
11 {% block page %}
12 <h1>Tic Tac Toe</h1>
13
14 <p>
15   Just the classic game.
16 </p>
17
18 <div id="tictactoe"></div>
19
20 {% endblock %}