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.
- Host: GitHub
- URL: https://github.com/blocklune/signupinout-frontend
- Owner: BlockLune
- License: other
- Created: 2024-07-07T02:11:14.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-18T10:11:14.000Z (almost 2 years ago)
- Last Synced: 2025-10-10T05:36:24.145Z (9 months ago)
- Language: Vue
- Size: 266 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License
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)_