From 766e171fc33eafa2e4b153a2be1719f5d41e96ab Mon Sep 17 00:00:00 2001 From: yongk1 <yongk1@gitlab.eng.unimelb.edu.au> Date: Mon, 29 Apr 2019 20:59:53 +1000 Subject: [PATCH] all html files --- 1_intro.html | 22 ++++++++++++++++++++++ 2_start.html | 21 +++++++++++++++++++++ 3_first_turn.html | 24 ++++++++++++++++++++++++ 4_accepted.html | 24 ++++++++++++++++++++++++ 5_discarded.html | 24 ++++++++++++++++++++++++ 6_endgame.html | 21 +++++++++++++++++++++ 7_gameover.html | 12 ++++++++++++ 7 files changed, 148 insertions(+) create mode 100644 1_intro.html create mode 100644 2_start.html create mode 100644 3_first_turn.html create mode 100644 4_accepted.html create mode 100644 5_discarded.html create mode 100644 6_endgame.html create mode 100644 7_gameover.html diff --git a/1_intro.html b/1_intro.html new file mode 100644 index 0000000..aa1cb25 --- /dev/null +++ b/1_intro.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> +<head> +</head> + +<body> + +<h2>Image Tagger Game</h2> + +<img src="https://swift.rc.nectar.org.au/v1/AUTH_eab314456b624071ac5aecd721b977f0/comp30023-project/image-3.jpg" alt="HTML5 Icon" style="width:700px;height:400px;"> + +<p>Welcome to the image tagging game. Please enter your name below.</p> + +<form method="POST"> + Name: <input type="text" name="user" /> + <input type="submit" class="button" /> +</form> + +</body> + +</html> + diff --git a/2_start.html b/2_start.html new file mode 100644 index 0000000..d09da4d --- /dev/null +++ b/2_start.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> +<head> +</head> +<body> + +<h2>Image Tagger Game</h2> + +<img src="https://swift.rc.nectar.org.au/v1/AUTH_eab314456b624071ac5aecd721b977f0/comp30023-project/image-3.jpg" alt="HTML5 Icon" style="width:700px;height:400px;"> + +<form method="GET"> + <input type="submit" class="button" name="start" value="Start"/> +</form> + +<form method="POST"> + <input type="submit" class="button" name="quit" value="Quit"/> +</form> + +</body> + +</html> \ No newline at end of file diff --git a/3_first_turn.html b/3_first_turn.html new file mode 100644 index 0000000..92f3ca0 --- /dev/null +++ b/3_first_turn.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> +<head> +</head> +<body> + +<h2>You are ready now!</h2> + +<img src="https://swift.rc.nectar.org.au/v1/AUTH_eab314456b624071ac5aecd721b977f0/comp30023-project/image-2.jpg" alt="HTML5 Icon" style="width:700px;height:400px;"> + +<p>Rule: Try to guess the above image by typing a keyword which describes it:</p> + +<form method="POST"> + Keyword: <input type="text" name="keyword" /> + <input type="submit" class="button" name="guess" value="Guess" /> +</form> + +<form method="POST"> + <input type="submit" class="button" name="quit" value="Quit"/> +</form> + +</body> +</html> + diff --git a/4_accepted.html b/4_accepted.html new file mode 100644 index 0000000..d3bdc8b --- /dev/null +++ b/4_accepted.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> +<head> +</head> +<body> + +<h2>Keyword Accepted! Keep trying more.</h2> + +<img src="https://swift.rc.nectar.org.au/v1/AUTH_eab314456b624071ac5aecd721b977f0/comp30023-project/image-2.jpg" alt="HTML5 Icon" style="width:700px;height:400px;"> + +<p>Rule: Try to guess the above image by typing a keyword which describes it:</p> + +<form method="POST"> + Keyword: <input type="text" name="keyword" /> + <input type="submit" class="button" name="guess" value="Guess" /> +</form> + +<form method="POST"> + <input type="submit" class="button" name="quit" value="Quit"/> +</form> + +</body> +</html> + diff --git a/5_discarded.html b/5_discarded.html new file mode 100644 index 0000000..bc5effa --- /dev/null +++ b/5_discarded.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> +<head> +</head> +<body> + +<h2>Keyword Discarded. The other player is not ready yet.</h2> + +<img src="https://swift.rc.nectar.org.au/v1/AUTH_eab314456b624071ac5aecd721b977f0/comp30023-project/image-2.jpg" alt="HTML5 Icon" style="width:700px;height:400px;"> + +<p>Rule: Try to guess the above image by typing a keyword which describes it:</p> + +<form method="POST"> + Keyword: <input type="text" name="keyword" /> + <input type="submit" class="button" name="guess" value="Guess" /> +</form> + +<form method="POST"> + <input type="submit" class="button" name="quit" value="Quit"/> +</form> + +</body> +</html> + diff --git a/6_endgame.html b/6_endgame.html new file mode 100644 index 0000000..3fe2cf8 --- /dev/null +++ b/6_endgame.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> +<head> +</head> +<body> + +<h2>Thanks for playing. The game is completed.</h2> + +<p>Would you like to play it again?</p> + +<form method="GET"> + <input type="submit" class="button" name="start" value="Start"/> +</form> + +<form method="POST"> + <input type="submit" class="button" name="quit" value="Quit"/> +</form> + +</body> +</html> + diff --git a/7_gameover.html b/7_gameover.html new file mode 100644 index 0000000..1f65c3c --- /dev/null +++ b/7_gameover.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> +<head> + +</head> +<body> + +<h2>Game Over!</h2> + +</body> +</html> + -- GitLab