Merge e49baa951b
into f9a03c332f
commit
e37c1f5855
@ -0,0 +1,25 @@
|
||||
# Password Generator
|
||||
|
||||
**Tier:** 2-Intermediate
|
||||
|
||||
Generate passwords based on certain characteristics selected by the user.
|
||||
|
||||
## User Stories
|
||||
|
||||
- [ ] User can select the length of the generated password
|
||||
- [ ] User can select one or multiple of the following: `Include uppercase letters`, `Include lowercase letters`, `Include numbers`, `Include symbols`
|
||||
- [ ] By clicking the `Generate password` button, the user can see a password being generated
|
||||
- [ ] User can click a `Copy to clipboard` button which will save the password to the clipboard
|
||||
|
||||
## Bonus features
|
||||
|
||||
- [ ] Use can see the password strength
|
||||
|
||||
## Useful links and resources
|
||||
|
||||
- [Password strength checked - zxcvbn](https://github.com/dropbox/zxcvbn)
|
||||
|
||||
## Example projects
|
||||
|
||||
- [Password Generator by Florin Pop on Codepen](https://codepen.io/FlorinPop17/full/BaBePej)
|
||||
- [PasswordGenerator](https://passwordsgenerator.net)
|
@ -0,0 +1,23 @@
|
||||
# Random Meal Generator
|
||||
|
||||
**Tier:** 1-Beginner
|
||||
|
||||
Generate a random meal from an API.
|
||||
|
||||
## User Stories
|
||||
|
||||
- [ ] User can click a button that will get a random meal from an external API (see below)
|
||||
- [ ] The app should display: **Recipe name**, **Ingredients**, **Instructions** and a **Picture** of the meal
|
||||
- [ ] By clicking the button again, another meal will be generated
|
||||
|
||||
## Bonus features
|
||||
|
||||
- [ ] The app should display a **YouTube Video**
|
||||
|
||||
## Useful links and resources
|
||||
|
||||
- [TheMealDB API](https://www.themealdb.com)
|
||||
|
||||
## Example projects
|
||||
|
||||
- [Random Meal Generator by Florin Pop on Codepen](https://codepen.io/FlorinPop17/full/WNeggor)
|
Loading…
Reference in new issue