Skip to content

Commit

Permalink
Input types updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jackbisceglia committed Jun 14, 2020
1 parent ecddab8 commit 92ee281
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.css linguist-detectable=false
*.js linguist-detectable=true
12 changes: 6 additions & 6 deletions react-frontend/src/Landing.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ export default function Landing({history}) {
>
<h1 style={{textAlign: 'center', fontSize: '1.5rem'}}>Sign Up for Trello Clone!</h1>
<form action="" className="sign-up">
<input type="text" placeholder="Email Address"/>
<input type="text" placeholder="Password"/>
<input type="text" placeholder="Confirm Password"/>
<input type="email" placeholder="Email Address"/>
<input type="password" placeholder="Password"/>
<input type="password" placeholder="Confirm Password"/>
<button className="button sign-up-btn">Sign Up!</button>
</form>
</Modal>
Expand All @@ -58,12 +58,12 @@ export default function Landing({history}) {
</div>
<div className="login">
<div className="login-box">
<h1 className="title">Login</h1>
<h1 className="title1">Login</h1>
<form className="login-form" action="" onSubmit={() => {
history.push("/home")
}}>
<input type="text" placeholder="Email address" className="inputBox"/>
<input type="text" placeholder="Password" className="inputBox"/>
<input type="email" placeholder="Email address" className="inputBox"/>
<input type="password" placeholder="Password" className="inputBox"/>
<button className="button">Login</button>
</form>
<p className="else" onClick={() => {
Expand Down
4 changes: 2 additions & 2 deletions react-frontend/src/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
align-items: center;
}

.title {
.title1 {
color: white;
text-align: center;
margin: 1rem 0;
Expand Down Expand Up @@ -74,7 +74,7 @@
margin: .75rem 0;
width: 30%;
height: 1.5rem;
background-color: white;
background-color: #CAE2EA;
border-style: none;
border-radius: .2rem;
transition: .25s;
Expand Down

0 comments on commit 92ee281

Please sign in to comment.