Frontend Routes - meagan13/Family-Supper GitHub Wiki
Family Supper uses the following front-end routes to navigate data and features:
Home (/)
Displays links to all recipes.
Login (/login)
Displays a form that a user with an an existing can use to log into their account.
Signup (/sign-up)
Display a form that a user without an account can user to create an account. After signing up a user is redirected to the home page.
Create a Recipe (/share-recipe)
Displays a series of forms where a logged-in user can create a recipe. The first form is to add general recipe information (e.g., title, author, description), the second form is where the user can enter ingredients, and the third form allows the user to add recipe instructions. After completing the series of forms the user is redirected to the home page.
User Profile (/users/:id)
Displays the logged-in user's username, email, bio, and recipes added.
404 Page
Displays a designed 404 error-not found message and a link users can click to return home.