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.