We will need a sign in page to accompany the sign up page. It should be fairly similar to how the SignUpPage and SignUp components were made.
Below are the themes that SignUp used. Of course we will need to modify this theme a bit and import it into SignInPage.
Here is the entire workflow/steps to get this job done.
1) Make sure the branch is properly updated. In the terminal run:
git checkout maingit pull
Before we write our code lets make a new branch:
git checkout -b SignInBranch
Time to code: Below are the steps:
Steps to complete
1) Place the code from the link below into our SignIn.js component
2) We only need the email and password as our input boxes. Remove/alter any unnecessary input fields.
3) Remove any unneeded images, we will style this later.
4) Place "ReaList" where necessary, do not worry about links for now, we will fix these later.
Once you are done with implementation update your local branch with any new changes from main:
git merge main
Stage and commit your changes to the remote branch:
git add .git commit -m <Your-message>
Please make it clear what you did in your message
Move the local branch changes to the remote branch. Since this is a new branch we do:
git push --set-upstream origin SignInBranch
for other changes just do the command git push
Create a pull request on here and wait for a merge :)
We will need a sign in page to accompany the sign up page. It should be fairly similar to how the SignUpPage and SignUp components were made.
Below are the themes that SignUp used. Of course we will need to modify this theme a bit and import it into SignInPage.
Here is the entire workflow/steps to get this job done. 1) Make sure the branch is properly updated. In the terminal run:
git checkout main
git pull
Before we write our code lets make a new branch:
git checkout -b SignInBranch
Time to code: Below are the steps:
Steps to complete 1) Place the code from the link below into our SignIn.js component 2) We only need the email and password as our input boxes. Remove/alter any unnecessary input fields. 3) Remove any unneeded images, we will style this later. 4) Place "ReaList" where necessary, do not worry about links for now, we will fix these later.
Once you are done with implementation update your local branch with any new changes from main:
git merge main
Stage and commit your changes to the remote branch:
git add .
git commit -m <Your-message>
Please make it clear what you did in your message
git push --set-upstream origin SignInBranch
for other changes just do the command
git push
Sign in Theme https://github.com/mui/material-ui/blob/v5.14.15/docs/data/material/getting-started/templates/sign-in/SignIn.js