-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
166 additions
and
30 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
REACT_APP_API_URL='https://hd-backend.azurewebsites.net' | ||
REACT_APP_API_URL=https://hd-backend.azurewebsites.net |
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 |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
.env | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
|
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,65 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import { MDBContainer, MDBRow, MDBCol, MDBBtn } from 'mdbreact'; | ||
import '../test.css'; | ||
|
||
|
||
const SuperSignUp = () => ( | ||
<div className="centerer"> | ||
<MDBContainer > | ||
<MDBRow> | ||
<MDBCol md="4" /> | ||
<MDBCol md="4"> | ||
<form className="test"> | ||
<p className="h4 text-center mb-4 test grande">Sign up</p> | ||
<label htmlFor="defaultFormLoginEmailEx" className="gray-text test"> | ||
Your name | ||
</label> | ||
<input | ||
type="email" | ||
id="defaultFormLoginEmailEx" | ||
className="form-control" | ||
/> | ||
<br /> | ||
<label htmlFor="defaultFormLoginEmailEx" className="gray-text test"> | ||
Your email | ||
</label> | ||
<input | ||
type="email" | ||
id="defaultFormLoginEmailEx" | ||
className="form-control" | ||
/> | ||
<br /> | ||
<label htmlFor="defaultFormLoginEmailEx" className="gray-text test"> | ||
Confirm your email | ||
</label> | ||
<input | ||
type="email" | ||
id="defaultFormLoginEmailEx" | ||
className="form-control" | ||
/> | ||
<br /> | ||
<label htmlFor="defaultFormLoginPasswordEx" className="gray-text test"> | ||
Your password | ||
</label> | ||
<input | ||
type="password" | ||
id="defaultFormLoginPasswordEx" | ||
className="form-control" | ||
/> | ||
<div className="text-center mt-4"> | ||
<button className="buttonLogin">Register</button> | ||
</div> | ||
<div className="mini text-center mt-4 test"> | ||
<Link className="test" to="/">Already registered? <span className="bold">Log in!</span></Link> | ||
</div> | ||
</form> | ||
</MDBCol> | ||
<MDBCol md="4" /> | ||
</MDBRow> | ||
</MDBContainer> | ||
</div> | ||
|
||
); | ||
|
||
export default SuperSignUp; |
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,54 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap'); | ||
|
||
.test { | ||
font-family: 'Lato', sans-serif !important; | ||
color: white; | ||
} | ||
|
||
.grande { | ||
font-size: 2em; | ||
} | ||
|
||
.centerer { | ||
height: 100vh; | ||
display: flex; | ||
align-items: center; | ||
background-color: #2f4858; | ||
} | ||
|
||
.mini { | ||
font-size: 0.9em; | ||
} | ||
|
||
.bold { | ||
font-family: 'Lato', sans-serif !important; | ||
color: white; | ||
font-weight: bold; | ||
color: white; | ||
} | ||
|
||
.buttonLogin { | ||
color: rgb(56, 56, 56); | ||
font-family: 'Lato', sans-serif !important; | ||
color: white; | ||
background-color: #38fd9e; | ||
width: 160px; | ||
height: 40px; | ||
border-radius: 10px; | ||
border: none; | ||
transition: all 0.4s ease-out 0s; | ||
} | ||
|
||
.buttonLogin:hover { | ||
color: white; | ||
background-color: #008fa0; | ||
transform: scale(1.1); | ||
} | ||
|
||
.gray-text { | ||
font-family: 'Lato', sans-serif !important; | ||
color: white; | ||
font-size: 1em; | ||
display: block; | ||
padding-bottom: 7px; | ||
} |
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