Merged main into branch to get needed backend function which was accidently pushed to the incorrect branch
Adds routing for loggedout page to fix bug when trying to logout from the home page
Changes redirect for the logout button to redirect to the newly created /loggedout page to fix the bug when trying to logout from the home page
Adds a function, route, and corresponding component to make the URL of the recipe page changed based on the RecipeID of that recipe
Added a dynamic list of the logged in users recipes on the view-profile page using session variables
Added default2.png image in /client/src/pages/recipe_images/ for a default recipe image incase the user does not choose to upload one
Restyles view-profile page using App.css to make it look a lot nicer
Added commented sections to App.css to make it easier to find the styles or sections of styles you might be looking for.
Added username to createRecipe frontend function which updates the recipe with the user who uploaded that recipe based on the session variable of that user
Modifies h3 style className on signup.js and login.js to prevent them from overriding other h3 styles where we do not want italics font
Added username, recipePicture, recipePictureEXT and corresponding recipe information to recipe schema/model
Moved get function from view-profile page to login page
Fixes frontend clearing of user input when form submission is incorrect (incorrect password, email, duplicated username etc.)
Removes unneeded /getUnique route on backend
Cleans up unneeded console logs for debugging on backend
Updates list of recipes on profile page after user uploads new recipe by adding get function from login page to createRecipe on successful upload
Adds back dynamic ingredients table to bottom of createRecipe page
Added proper redirect from createRecipe page on successful upload to the recipe that the user upload
Fixes bug where form on createRecipe page erases itself on incorrect submission
Renames ReactSession variable from pickle to picture
Added feature from backend on recipe upload to return the ID of the uploaded recipe
Closes #43