Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
We are building the new user sign up process. We have found that we will need to map out our routing, views, and actions that can be taken from those views by the user.
ROUTES:
With no user logged in:
/
: shows the landing page view with SignUp and LogIn buttons;/signup
: Clicking the SignUp button routes to/signup
and shows a registration form;/login
: Clicking the LogIn button routes to/login
and shows a login form;Submitting the SignUp form will register the user and log them in and route to
/shopping
.Submitting the LogIn form will log the user in and route to
/shopping
.With a user logged in:
/add
: should be/additem
;/:itemID?
: should be/shopping/:itemID?
;Related Issue
#59
Acceptance Criteria
Type of Changes
Updates
Before
After
Testing Steps / QA Criteria