From 408f0913d976f8c756c57180163236b42a45bff0 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 24 May 2020 09:59:38 -0500 Subject: Add trivia game --- src/trivia/index.html | 120 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 src/trivia/index.html (limited to 'src/trivia/index.html') diff --git a/src/trivia/index.html b/src/trivia/index.html new file mode 100644 index 0000000..6ae2d38 --- /dev/null +++ b/src/trivia/index.html @@ -0,0 +1,120 @@ + + + + + Trivia + + + + + + + + + + +
+
+

+ Trivia +

+
+
+ +
+
+ +
+
+ + +
+
+
+
+
+

Game Code:

+

{{game.gameCode}}

+

Players

+
    +
  • {{player.name}}
  • +
+
+
    +
  1. {{question}}
  2. +
+ + + +
+
+
+

{{game.round+1}}/{{game.questions.length}}

+
+

{{game.questions[game.round]}}

+

Buzz order

+
    +
  1. + {{buzz}} +
  2. +
+
+

Give points

+
    +
  1. +
    + +
    +
    + {{player.name}} + + +
    +
  2. +
+
+
+ +
+
+
+

Score:

+ + + + + + + + + +
PlayerScore
{{player.name}}{{player.score}}
+
+ +
+
+
+

Final Scores:

+

{{game.winner}} wins!

+ + + + + + + + + +
PlayerScore
{{player.name}}{{player.score}}
+
+
+
+
+ + + \ No newline at end of file -- cgit v1.2.3