From d57951466ee431b21fa096dc6185739d3e335d4c Mon Sep 17 00:00:00 2001 From: OpenClaw Engineer Date: Sat, 7 Mar 2026 15:22:13 -0600 Subject: [PATCH] Update difficulty selection visibility, enhance scores data, and modify password error message --- index.php | 12 +++++++----- js/game.js | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index a87ff7f..e0ce76a 100644 --- a/index.php +++ b/index.php @@ -34,13 +34,15 @@ - - + + - + +

diff --git a/js/game.js b/js/game.js index 5ea28cd..f1b73a0 100644 --- a/js/game.js +++ b/js/game.js @@ -242,7 +242,7 @@ startFormEl.addEventListener('submit', (e) => { e.preventDefault(); const pass = passwordEl.value.trim(); if (pass !== '1027') { - startErrorEl.textContent = 'Wrong password. Try 1027.'; + startErrorEl.textContent = 'Wrong password. Ask Tanner.'; return; }