diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2025-11-09 09:56:59 +0100 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2025-11-09 09:56:59 +0100 |
| commit | 34d77cd777bd44d7bfe0e3ab3379f9be256ca88b (patch) | |
| tree | 04fba9f8bb99ac8fa15a1048b0ee06cbfed7f25d /index.html | |
| parent | 90390365bd93a4ee086c2931bb70ffa571a726b9 (diff) | |
Moved to javascript codebase
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..5ac86c8 --- /dev/null +++ b/index.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>Match Up!</title> + <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"> + <link rel="stylesheet" href="index.css"> + </head> + <body> + <main class="container"> + <nav> + <ul> + <li><strong>Match Up</strong></li> + </ul> + <ul> + <li><a href="/players">Players</a></li> + <li><a href="#">Guests</a></li> + <li><a href="#">Admin</a></li> + </ul> + </nav> + <div> + <h2>Regulars</h2> + <div id="player_list" class="button-grid"></div> + </div> + </main> + <script src="player.mjs" type="module"></script> + <script src="index.js" type="module"></script> + </body> +</html>
\ No newline at end of file |
