More tweaks

This commit is contained in:
Aaron D. Lee
2025-12-27 17:14:13 -05:00
parent 49fe3f1715
commit 9c7a898a71
2 changed files with 4 additions and 4 deletions

6
app.py
View File

@@ -112,11 +112,11 @@ def cleanup_temp_files():
def allowed_file(filename): def allowed_file(filename):
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
def generate_pin(length=6): def generate_pin(length=6):
"""Generate a random PIN of specified length (6-8 digits).""" """Generate a random PIN of specified length (6-8 digits)."""
return ''.join(str(secrets.randbelow(10)) for _ in range(length)) first_digit = str(secrets.randbelow(9) + 1) # 1-9
rest = ''.join(str(secrets.randbelow(10)) for _ in range(length - 1)) # 0-9
return first_digit + rest
def generate_day_phrases(words_per_phrase=3): def generate_day_phrases(words_per_phrase=3):
phrases = {} phrases = {}

View File

@@ -124,7 +124,7 @@
font-size: 3rem; font-size: 3rem;
font-weight: bold; font-weight: bold;
letter-spacing: 0.75rem; letter-spacing: 0.75rem;
background: linear-gradient(135deg, #a5b4fc, #c4b5fd, #f0abfc); background: linear-gradient(135deg, #fef08a, #fcd34d, #fb923c);
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
background-clip: text; background-clip: text;