-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
47dd9d0
commit 1230e6e
Showing
5 changed files
with
102 additions
and
3 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
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,33 @@ | ||
import React, { useEffect } from 'react'; | ||
|
||
|
||
|
||
import '../Login/style.css'; | ||
|
||
|
||
|
||
const Login = () => { | ||
useEffect(() => { | ||
window.scrollTo(0,0); | ||
}, []); | ||
return ( | ||
<section className="container-login"> | ||
<div className="box-login"> | ||
<h3 className="title-login">Cadastre-se na nossa plataforma</h3> | ||
<p className="description-login">Vem fazer parte desse time de mulheres!</p> | ||
|
||
<form className="login-form" action=""> | ||
|
||
<input className="input-form" type="email" placeholder="E-mail" autoComplete="on"/> | ||
<input className="input-form input-password" type="password" placeholder="Senha"/> | ||
|
||
<a className="btn-form" href="#">Cadastrar</a> | ||
|
||
</form> | ||
</div> | ||
</section> | ||
|
||
) | ||
} | ||
|
||
export default Login; |
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,66 @@ | ||
.container-login { | ||
width: 100%; | ||
height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
background: url(https://www.reprograma.com.br/assets/img/cursos-03.png) no-repeat; | ||
background-size: cover; | ||
} | ||
.box-login { | ||
width: 50rem; | ||
height: 70vh; | ||
background: rgba(0,0,0,.7); | ||
} | ||
|
||
.title-login { | ||
margin-top: 2rem; | ||
color: #fff; | ||
} | ||
|
||
.description-login { | ||
margin-top: 1rem; | ||
color: #fff; | ||
} | ||
.login-form { | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 3rem; | ||
position: relative; | ||
} | ||
.input-form { | ||
width: 80%; | ||
padding: 20px; | ||
border: none; | ||
outline: none; | ||
} | ||
.input-password { | ||
margin-top: 1rem; | ||
|
||
} | ||
.input-form::placeholder { | ||
font-size: 1rem; | ||
font-family: 'IBM Plex Sans', sans-serif; | ||
} | ||
|
||
.btn-form { | ||
display: inline-block; | ||
background: #A3679A; | ||
width: 12rem; | ||
height: 3rem; | ||
padding: 13px; | ||
margin-top: 2rem; | ||
font-weight: bold; | ||
color: #fff; | ||
letter-spacing: 2px; | ||
border-radius: 3px; | ||
|
||
} | ||
|
||
@media (min-width: 700px) { | ||
.title-login{ | ||
font-size: 1.7rem; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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