Nostromos / what.ecom

PERN Ecom app for Codecademy's Full Stack path.
MIT License
0 stars 0 forks source link

Build Registration page #31

Open Nostromos opened 8 months ago

Nostromos commented 8 months ago

The registration page should allow the user to create a new account using a username and password. It should also include a link to the login page if the user already has an existing account.

Create a form for users to register a new account. Make sure you modify your registration endpoint handler to hash and salt the password in order to ensure secure storage! We recommend using bcryptjs to secure your passwords.

After users register an account, they should automatically be signed in as well.