reflex-dev / reflex-examples

A repository full of Reflex example apps.
456 stars 351 forks source link

Store the users hashed password using bcrypt instead of the plaintext… #255

Open jturner opened 1 month ago

jturner commented 1 month ago

This updates the twitter example to hash the users password using bcrypt and store that instead of storing it in plaintext. Since https://reflex.dev/docs/authentication/authentication-overview/ points to this example for Local Auth I figured it was a good idea to use best practices like not storing passwords in plain text.