Change secret code to PIN system with explainer text

- Renamed 'secret code' to 'PIN' throughout UI
- Added PIN explainer text explaining how system identifies players
- New players get random 6-char PIN, must save it
- Players use name + PIN to update scores
- PIN ensures unique identification for each player
This commit is contained in:
Gemini AI
2025-12-27 03:06:55 +04:00
Unverified
parent 230178cd7f
commit 744e9c9714
3 changed files with 217 additions and 36 deletions

View File

@@ -1032,6 +1032,17 @@ body {
font-style: italic;
}
.pin-explainer {
color: var(--aurora-cyan);
font-size: 0.75rem;
text-align: center;
margin-top: 8px;
padding: 8px 12px;
border-radius: 8px;
background: rgba(0, 255, 255, 0.1);
border: 1px solid rgba(0, 255, 255, 0.3);
}
.export-buttons {
display: flex;
gap: 15px;