tr-vs / realist

2 stars 3 forks source link

Sign In page creation #14

Closed kesdlvi closed 1 year ago

kesdlvi commented 1 year ago

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

  1. Before we write our code lets make a new branch: git checkout -b SignInBranch

  2. 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.

  1. Once you are done with implementation update your local branch with any new changes from main: git merge main

  2. 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

  1. 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

  1. Create a pull request on here and wait for a merge :)

Sign in Theme https://github.com/mui/material-ui/blob/v5.14.15/docs/data/material/getting-started/templates/sign-in/SignIn.js