-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ResetPassword component styled using tailwind css #55
Open
byronkenoly
wants to merge
5
commits into
pre-dev
Choose a base branch
from
feature-forgot-password-component
base: pre-dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7a0d25f
styled using tailwind css instead of vanilla css
byronkenoly c0f4a4d
removed ForgotPassword import
byronkenoly e38673b
removed one sharp sign in darkText hex code
byronkenoly 4a20c16
Renamed ForgotPassword component to ResetPassword
byronkenoly 006d80e
Merge branch 'pre-dev' into feature-forgot-password-component
byronkenoly File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import React from "react"; | ||
import spaceYaTechLogo from './spaceYaTechLogo.svg'; | ||
|
||
function ForgotPassword(){ | ||
return ( | ||
<div className="flex"> | ||
<div className="w-44vw h-screen bg-secondaryGreen"> | ||
<div className="py-22vh flex justify-center items-center"> | ||
<img src={spaceYaTechLogo} className="h-56vh"/> | ||
</div> | ||
</div> | ||
<div className="w-56vw h-screen"> | ||
<div className="mt-10vh mb-48vh mx-0"> | ||
<div className="pb-8vh"> | ||
<div className="w-32vw leading-5.7vh m-auto text-4vh text-center text-spaceYaTech_text font-poppins not-italic font-medium"> | ||
Please Reset Password | ||
</div> | ||
</div> | ||
<div> | ||
<form> | ||
<div> | ||
<div className="flex justify-center items-center pb-1.65vh"> | ||
<input className="box-border w-42vw h-7.5vh border border-solid border-black rounded-8px py-1.65vh px-1vw font-poppins font-normal text-2vh" type="password" placeholder="Password"/> | ||
</div> | ||
<div className="flex justify-center items-center pb-3.7vh"> | ||
<input className="box-border w-42vw h-7.5vh border border-solid border-black rounded-8px py-1.65vh px-1vw font-poppins font-normal text-2vh" type="password" placeholder="Confirm Password"/> | ||
</div> | ||
</div> | ||
<div className="flex justify-center items-center"> | ||
<button className="box-border w-42vw h-7.5vh border-0 rounded-8px font-poppins font-normal text-3vh font-medium bg-secondaryGreen text-spaceYaTech_white">Continue</button> | ||
</div> | ||
<div></div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default ForgotPassword; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this being commented out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to test how ForgotPassword component renders in the browser as currently we have no routes set up. Changes made in this
src/index.tsx
file can be done away with.