Spaces:
Running
Running
| <html> | |
| <head> | |
| <link rel="stylesheet" href="/static/chessboard-1.0.0.min.css"> | |
| <link rel="stylesheet" href="/static/styles.css"> | |
| </head> | |
| <body> | |
| <h1>Chess Position Search</h1> | |
| <div class="container"> | |
| <div> | |
| <div id="board"></div> | |
| <button onclick="board.start()">Reset</button> | |
| <button onclick="board.clear()">Clear</button> | |
| <button onclick="search()">Search</button> | |
| </div> | |
| <div class="info-panel"> | |
| <h3>Position Info</h3> | |
| <div id="fen"></div> | |
| <p id="position-info"></p> | |
| </div> | |
| </div> | |
| <div id="results"></div> | |
| <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> | |
| <script src="/static/chessboard-1.0.0.min.js"></script> | |
| <script src="/static/app.js"></script> | |
| </body> | |
| </html> |