An open API service indexing awesome lists of open source software.

https://github.com/blocklune/signupinout-frontend

The frontend part of the `SignUpInOut` project, which aims to create a simple registration and login system.
https://github.com/blocklune/signupinout-frontend

Last synced: 4 months ago
JSON representation

The frontend part of the `SignUpInOut` project, which aims to create a simple registration and login system.

Awesome Lists containing this project

README

          

# SignUpInOut-Frontend

This is the frontend part of a project that aims to create a simple registration and login system.

## Helpful Commands

```bash
pnpm install # Make sure to install the dependencies
pnpm run dev # Start the development server on `http://localhost:3000`
pnpm run build # Build the application for production
pnpm run preview # Locally preview production build
```

## About Storing Data

It's really important to store user data securely. I read the following articles to understand how to do that properly:

- _[How To Safely Store A Password | codahale.com](https://codahale.com/how-to-safely-store-a-password/)_
- _[Storing User Passwords with Bcrypt | by Andrew Herman Heller | Medium](https://medium.com/@andrewhheller/storing-user-passwords-with-bcrypt-e3b7306b870a)_
- _[Password Storage - OWASP Cheat Sheet Series](https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html)_