You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue: Passwords are stored in plain text in the database, which is a major security risk.
Suggested Fix: Integrate a hashing library like bcrypt or use a SHA256 hash via openssl.
Example: Hash the password before storing and during login, compare hashed versions.