From fa870bc0b45cefbd62e2f7bc4a5e10df023254d7 Mon Sep 17 00:00:00 2001 From: belardoadrian Date: Wed, 3 Sep 2025 10:18:27 +0800 Subject: [PATCH 01/10] initial commit --- htdocs/pages/dashboard.html | 120 ++++++++++++++++++++++++++++++++++++ htdocs/pages/homepage.html | 59 ++++++++++++++++++ 2 files changed, 179 insertions(+) create mode 100644 htdocs/pages/dashboard.html create mode 100644 htdocs/pages/homepage.html diff --git a/htdocs/pages/dashboard.html b/htdocs/pages/dashboard.html new file mode 100644 index 0000000..8d0de17 --- /dev/null +++ b/htdocs/pages/dashboard.html @@ -0,0 +1,120 @@ + + + + + + Quiz Game Dashboard + + + +
+

Quiz Game Dashboard

+

Welcome, Player1 🎮

+
+ +
+
+

Current Score

+

0

+ +
+ +
+

Stats

+

Total Games: 3

+

Accuracy: 75%

+
+ +
+

Leaderboard

+
    +
  1. Alice - 120
  2. +
  3. Bob - 100
  4. +
  5. Charlie - 85
  6. +
+
+ +
+

Settings

+ +
+
+ + + + + + diff --git a/htdocs/pages/homepage.html b/htdocs/pages/homepage.html new file mode 100644 index 0000000..3a2c132 --- /dev/null +++ b/htdocs/pages/homepage.html @@ -0,0 +1,59 @@ + + + + + + Quiz Game + + + +

Ultimate Quiz Challenge

+ +
+

Test your knowledge across multiple categories!
+ You’ll have 10 seconds to answer each question.
+ Good luck!

+
+ + + + From 2e4ba384ce039398827ac7fcd06e71690bcfdb84 Mon Sep 17 00:00:00 2001 From: belardoadrian Date: Sat, 6 Sep 2025 21:45:22 +0800 Subject: [PATCH 02/10] boss di pa siya tapos, isip pa ako design --- htdocs/pages/homepage.html | 58 +++++++++++++++++++++++++++----------- 1 file changed, 42 insertions(+), 16 deletions(-) diff --git a/htdocs/pages/homepage.html b/htdocs/pages/homepage.html index 3a2c132..ee71cc8 100644 --- a/htdocs/pages/homepage.html +++ b/htdocs/pages/homepage.html @@ -3,35 +3,44 @@ - Quiz Game + Coperight -

Ultimate Quiz Challenge

- +

Welcome to Coperight

+ + +
-

Test your knowledge across multiple categories!
- You’ll have 10 seconds to answer each question.
- Good luck!

+

Test your knowledge and learn about plagiarism

- // Change color every second - setInterval(() => { - text.style.color = getRandomColor(); - }, 1000); - function startQuiz() { - // Redirect to quiz page (quiz.html) - window.location.href = "quiz.html"; - } - From 0509fcf46b458cff49f9b474c1a2a4ec4086061c Mon Sep 17 00:00:00 2001 From: belardoadrian Date: Tue, 16 Sep 2025 20:20:47 +0800 Subject: [PATCH 05/10] ok na ba yung design boss? --- htdocs/pages/homepage.html | 183 +++++++++++++++++-------------------- 1 file changed, 86 insertions(+), 97 deletions(-) diff --git a/htdocs/pages/homepage.html b/htdocs/pages/homepage.html index 7217c03..5ced32c 100644 --- a/htdocs/pages/homepage.html +++ b/htdocs/pages/homepage.html @@ -8,116 +8,105 @@ body { font-family: Arial, sans-serif; text-align: center; - background: linear-gradient( - 135deg, - hsl(236, 90%, 33%), - lab(17.89% 52.32 -72.14) - ); - height: 100vh; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - margin: 50px; - overflow: hidden; -} + background: linear-gradient( + 135deg, + hsl(236, 90%, 33%), + lab(17.89% 52.32 -72.14) + ); + height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin: 50px; + overflow: hidden; + } - body::before { - content: ""; - position: absolute; - bottom: -300px; - left: 50%; - width: 1500px; - height: 800px; - transform: translateX(-50%); - border-radius: 50%; - background: radial-gradient( - circle, - oklab(48.019% 0.10824 -0.2361) 0%, - rgba(255, 255, 255, 0) 70% - ); - filter: blur(80px); - z-index: -1; - } - - - h1 { - font-size: 3em; - margin-bottom: 20px; - transition: color 0.5s ease; - } - .start-button { - background: linear-gradient(135deg, #4facfe, #00f2fe); - color: white; - font-size: 18px; - font-weight: 600; - padding: 12px 28px; - border: none; - border-radius: 12px; - cursor: pointer; - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); - transition: all 0.3s ease; - } - .start-button:hover { - transform: scale(1.08); - background: linear-gradient(135deg, #43e97b, #38f9d7); - box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); - } - .start-button:active { - transform: scale(0.96); - } - .instructions { - margin-top: 20px; - max-width: 400px; - font-size: 1.1em; - } - .logo { - position: absolute; - top: 20px; - left: 20px; - height: 60px; -} - p { - color:#32CD32; - } - + body::before { + content: ""; + position: absolute; + bottom: -300px; + left: 50%; + width: 1500px; + height: 800px; + transform: translateX(-50%); + border-radius: 50%; + background: radial-gradient( + circle, + oklab(48.019% 0.10824 -0.2361) 0%, + rgba(255, 255, 255, 0) 70% + ); + filter: blur(80px); + z-index: -1; + } + + .logo { + height: 300px; + margin-bottom: 20px; + transition: filter 0.5s ease; + } + + .start-button { + background: linear-gradient(135deg, #4facfe, #00f2fe); + color: white; + font-size: 18px; + font-weight: 600; + padding: 12px 28px; + border: none; + border-radius: 12px; + cursor: pointer; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); + transition: all 0.3s ease; + } + .start-button:hover { + transform: scale(1.08); + background: linear-gradient(135deg, #43e97b, #38f9d7); + box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); + } + .start-button:active { + transform: scale(0.96); + } + + .instructions { + margin-top: 20px; + max-width: 400px; + font-size: 1.1em; + } + + p { + color: #32CD32; + } -

Welcome to Coperight

+ + - +
-

Challenge yourself and deepen your understanding of plagiarism

-
- - +

Challenge yourself and deepen your understanding of plagiarism

- + + // Change to the next color every second + setInterval(() => { + logo.style.filter = `drop-shadow(0 0 15px ${colors[index]}) + drop-shadow(0 0 30px ${colors[index]})`; + index = (index + 1) % colors.length; // loop back to start + }, 1000); + function startQuiz() { + window.location.href = "quiz.html"; + } + From f288931c05ae11c807bf80a728a6039082d7b7e2 Mon Sep 17 00:00:00 2001 From: belardoadrian Date: Tue, 16 Sep 2025 20:24:03 +0800 Subject: [PATCH 06/10] ok na ba boss yung design? --- htdocs/pages/homepage.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/pages/homepage.html b/htdocs/pages/homepage.html index 5ced32c..00f6ef0 100644 --- a/htdocs/pages/homepage.html +++ b/htdocs/pages/homepage.html @@ -93,7 +93,7 @@ const logo = document.getElementById("logo"); // Colors - const colors = ["#FFA500", "#99AABB", "#708090", "#FFFF00", "#FFC0CB", "#FFFFFF", "#FFFF00", "#00FFFF", "#D3D3D3", "#F5F5DC", "#FFB6C1"]; + const colors = ["#FFA500", "#99AABB", "#708090", "#FFFF00", "#FFC0CB", "#FFFFFF", "#FFFF00", "#00FFFF", "#D3D3D3", "#F5F5DC", "#FFB6C1", "#e1ff00"]; let index = 0; // Change to the next color every second From eeea969a9e85886b5f70c5f28f193dbf53eaa180 Mon Sep 17 00:00:00 2001 From: belardoadrian Date: Tue, 16 Sep 2025 22:03:21 +0800 Subject: [PATCH 07/10] di pa yan tapos boss, may babaguhin pa ako --- htdocs/pages/dashboard.html | 181 +++++++++++++++++++----------------- 1 file changed, 94 insertions(+), 87 deletions(-) diff --git a/htdocs/pages/dashboard.html b/htdocs/pages/dashboard.html index 8d0de17..287de2f 100644 --- a/htdocs/pages/dashboard.html +++ b/htdocs/pages/dashboard.html @@ -3,118 +3,125 @@ - Quiz Game Dashboard + Leaderboard -
-

Quiz Game Dashboard

-

Welcome, Player1 🎮

-
- -
-
-

Current Score

-

0

- -
-
-

Stats

-

Total Games: 3

-

Accuracy: 75%

-
+ +
+ +
-
-

Leaderboard

-
    -
  1. Alice - 120
  2. -
  3. Bob - 100
  4. -
  5. Charlie - 85
  6. -
-
-
-

Settings

- -
+ +
+

Leaderboard

+
-
- © 2025 Quiz Game | Built with ❤️ -
- + From c84c72e81347ece7f51be03c5e3f54a8750285ff Mon Sep 17 00:00:00 2001 From: belardoadrian Date: Mon, 22 Sep 2025 10:33:38 +0800 Subject: [PATCH 08/10] ito na po yung final design --- htdocs/pages/homepage.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/pages/homepage.html b/htdocs/pages/homepage.html index 00f6ef0..b94410a 100644 --- a/htdocs/pages/homepage.html +++ b/htdocs/pages/homepage.html @@ -47,7 +47,7 @@ } .start-button { - background: linear-gradient(135deg, #4facfe, #00f2fe); + background: linear-gradient(135deg, orange, yellow); color: white; font-size: 18px; font-weight: 600; @@ -60,7 +60,7 @@ } .start-button:hover { transform: scale(1.08); - background: linear-gradient(135deg, #43e97b, #38f9d7); + background: linear-gradient(135deg, #FFA500, #FF4500); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); } .start-button:active { @@ -74,7 +74,7 @@ } p { - color: #32CD32; + color: #FFFFFF; } From 1ebb7cb00873f2b9d1db68d03e07385d01f479d7 Mon Sep 17 00:00:00 2001 From: belardoadrian Date: Sat, 27 Sep 2025 17:27:13 +0800 Subject: [PATCH 09/10] Ito na yung final --- htdocs/pages/homepage.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/pages/homepage.html b/htdocs/pages/homepage.html index b94410a..01fe8d1 100644 --- a/htdocs/pages/homepage.html +++ b/htdocs/pages/homepage.html @@ -48,7 +48,7 @@ .start-button { background: linear-gradient(135deg, orange, yellow); - color: white; + color: black; font-size: 18px; font-weight: 600; padding: 12px 28px; From 06303f7e24a1e5ad3c3581796976761f1fedc953 Mon Sep 17 00:00:00 2001 From: belardoadrian Date: Sun, 28 Sep 2025 12:27:15 +0800 Subject: [PATCH 10/10] Ito po yung sa leaderboard --- htdocs/pages/leaderboard.html | 152 ++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 htdocs/pages/leaderboard.html diff --git a/htdocs/pages/leaderboard.html b/htdocs/pages/leaderboard.html new file mode 100644 index 0000000..9027e57 --- /dev/null +++ b/htdocs/pages/leaderboard.html @@ -0,0 +1,152 @@ + + + + + + Leaderboard + + + + + +
+ +
+ + +
+

Leaderboard

+
+
+ + + + +