Add VIP+ mode to PIN screen and Play Again options

This commit is contained in:
OpenClaw Engineer
2026-03-05 06:39:06 -06:00
parent be519d515e
commit e106d8ea65
3 changed files with 39 additions and 11 deletions
+11 -4
View File
@@ -21,9 +21,12 @@
<label for="startPassword">Password</label>
<input id="startPassword" type="password" required placeholder="Enter password" />
<label class="inline-option" for="vipMode">
<input id="vipMode" type="checkbox" /> VIP mode (6 hearts)
</label>
<label for="accessMode">Access Mode</label>
<select id="accessMode">
<option value="standard" selected>Standard (3 hearts)</option>
<option value="vip">VIP (6 hearts)</option>
<option value="vipPlus">VIP+ (9 hearts)</option>
</select>
<label for="difficulty">Difficulty</label>
<select id="difficulty">
@@ -49,7 +52,11 @@
<input id="playerName" maxlength="20" required />
<button type="submit">Save Score</button>
</form>
<button id="restartBtn">Play Again</button>
<div class="play-again-row">
<button id="restartBtn">Play Again</button>
<button id="restartVipBtn" type="button">Play Again (VIP)</button>
<button id="restartVipPlusBtn" type="button">Play Again (VIP+)</button>
</div>
</div>
</div>