diff --git a/app.py b/app.py index 9fb37a7..33c958f 100644 --- a/app.py +++ b/app.py @@ -35,7 +35,7 @@ def init_db(): # Default user: admin / Pass: seki123 user = conn.execute('SELECT * FROM users WHERE username = ?', ('admin',)).fetchone() if not user: - hashed_pw = generate_password_hash('seki123') + hashed_pw = generate_password_hash('choripan1234') conn.execute('INSERT INTO users (username, password) VALUES (?, ?)', ('admin', hashed_pw)) conn.commit() diff --git a/pos_database.db b/pos_database.db index c5e324a..1b3e160 100644 Binary files a/pos_database.db and b/pos_database.db differ