diff options
Diffstat (limited to 'frontend/public')
| -rw-r--r-- | frontend/public/golf/game.html | 11 | ||||
| -rw-r--r-- | frontend/public/golf/index.html | 18 | ||||
| -rw-r--r-- | frontend/public/golf/watch.html | 11 | ||||
| -rw-r--r-- | frontend/public/index.html | 17 | ||||
| -rw-r--r-- | frontend/public/race/game.html | 11 | ||||
| -rw-r--r-- | frontend/public/race/index.html | 14 | ||||
| -rw-r--r-- | frontend/public/race/watch.html | 11 |
7 files changed, 93 insertions, 0 deletions
diff --git a/frontend/public/golf/game.html b/frontend/public/golf/game.html new file mode 100644 index 0000000..bbe949f --- /dev/null +++ b/frontend/public/golf/game.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <head> + <title>Golf | Albatross.swift</title> + </head> + <body> + <h1>Golf</h1> + <div id="app"></div> + <script type="module" src="/js/game.js"></script> + </body> +</html> diff --git a/frontend/public/golf/index.html b/frontend/public/golf/index.html new file mode 100644 index 0000000..1d5bc9d --- /dev/null +++ b/frontend/public/golf/index.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> + <head> + <title>Golf | Albatross.swift</title> + </head> + <body> + <h1>Golf</h1> + <form method="post"> + <div> + <label for="name">名前</label> + <input type="text" name="name" required> + </div> + <div> + <button type="submit">開始</button> + </div> + </form> + </body> +</html> diff --git a/frontend/public/golf/watch.html b/frontend/public/golf/watch.html new file mode 100644 index 0000000..6ab7699 --- /dev/null +++ b/frontend/public/golf/watch.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <head> + <title>Golf | Albatross.swift</title> + </head> + <body> + <h1>Golf</h1> + <div id="app"></div> + <script type="module" src="/js/watch.js"></script> + </body> +</html> diff --git a/frontend/public/index.html b/frontend/public/index.html new file mode 100644 index 0000000..8101332 --- /dev/null +++ b/frontend/public/index.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> + <head> + <title>Albatross.swift</title> + </head> + <body> + <h1>Albatross.swift</h1> + <div> + <div> + <a href="/golf/">ゴルフ</a> + </div> + <div> + <a href="/race/">レース</a> + </div> + </div> + </body> +</html> diff --git a/frontend/public/race/game.html b/frontend/public/race/game.html new file mode 100644 index 0000000..08810cc --- /dev/null +++ b/frontend/public/race/game.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <head> + <title>Race | Albatross.swift</title> + </head> + <body> + <h1>Race</h1> + <div> + </div> + </body> +</html> diff --git a/frontend/public/race/index.html b/frontend/public/race/index.html new file mode 100644 index 0000000..930f2e7 --- /dev/null +++ b/frontend/public/race/index.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <title>Race | Albatross.swift</title> + </head> + <body> + <h1>Race</h1> + <form> + <label for="name">名前</label> + <input type="text" name="name"> + <button type="submit">開始</button> + </form> + </body> +</html> diff --git a/frontend/public/race/watch.html b/frontend/public/race/watch.html new file mode 100644 index 0000000..08810cc --- /dev/null +++ b/frontend/public/race/watch.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <head> + <title>Race | Albatross.swift</title> + </head> + <body> + <h1>Race</h1> + <div> + </div> + </body> +</html> |
