-
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
Gustavo S. de Paula
committed
Mar 28, 2020
1 parent
05519aa
commit 1560f0d
Showing
25 changed files
with
553 additions
and
316 deletions.
There are no files selected for viewing
Submodule frontend
deleted from
80b3e4
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
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap'); | ||
|
||
* { | ||
margin:0; | ||
padding: 0; | ||
outline: 0; | ||
box-sizing: border-box; | ||
|
||
} | ||
|
||
body { | ||
font: 400 14px Roboto, sans-serif; | ||
background: #f0f0f5; | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
|
||
input, button, textarea { | ||
font: 400 18px Roboto, sans-serif; | ||
} | ||
|
||
form input { | ||
width: 100%; | ||
height: 60px; | ||
color: #3333; | ||
border: 1px solid #ececd6; | ||
border-radius: 8px; | ||
padding: 0 24px | ||
} | ||
|
||
.button { | ||
width: 100%; | ||
height: 60px; | ||
background: #e02041; | ||
border: 0px solid #ececd6; | ||
border-radius: 8px; | ||
color: #fff; | ||
font-weight: bold; | ||
margin-top: 16px; | ||
display: inline-block; | ||
text-align: center; | ||
text-decoration: none; | ||
font-size: 18px; | ||
line-height: 60px; | ||
transition: filter 0.2s; | ||
} | ||
|
||
.button:hover { | ||
filter: brightness(90%) | ||
} | ||
button { | ||
cursor: pointer; | ||
} | ||
|
||
.back-link { | ||
display: flex; | ||
align-items: center; | ||
margin-top:40px; | ||
color: #41414d; | ||
font-size: 18px; | ||
text-decoration: none; | ||
font-weight: 500; | ||
transition: opacity 0.2s; | ||
} | ||
.back-link svg { | ||
margin-right: 8px; | ||
} | ||
.back-link:hover { | ||
opacity: 0.8; | ||
} |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,28 @@ | ||
import React from 'react'; | ||
import {FiLogIn} from 'react-icons/fi'; | ||
import { Link } from 'react-router-dom' | ||
|
||
import './styles.css'; | ||
|
||
import heroesImg from '../../assets/heroes.png' | ||
import logoImg from '../../assets/logo.svg' | ||
|
||
export default function Logon(){ | ||
return( | ||
<div className="logon-container"> | ||
<section className="form"> | ||
<img src={logoImg} alt="Be The Hero"></img> | ||
<form> | ||
<h1>Faça seu login</h1> | ||
<input placeholder="Sua ID"></input> | ||
<button className="button" type="submit">Entrar</button> | ||
<Link className="back-link" to="/register"> | ||
<FiLogIn size={16} color="#e02041"></FiLogIn> | ||
Não tenho Cadastro | ||
</Link> | ||
</form> | ||
</section> | ||
<img src={heroesImg} alt="Heroes"></img> | ||
</div> | ||
); | ||
} |
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,24 @@ | ||
.logon-container { | ||
width: 100%; | ||
max-width: 1120px; | ||
height: 100vh; | ||
margin: 0 auto; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
|
||
.logon-container section.form { | ||
width: 100%; | ||
max-width: 350px; | ||
margin-right: 30px; | ||
} | ||
|
||
.logon-container section.form form { | ||
margin-top: 100px; | ||
} | ||
|
||
.logon-container section.form form h1 { | ||
font-size: 32px; | ||
margin-bottom: 32px; | ||
} |
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,40 @@ | ||
import React from 'react'; | ||
import {FiArrowLeft} from 'react-icons/fi'; | ||
|
||
import { Link } from 'react-router-dom' | ||
|
||
import './styles.css'; | ||
|
||
import heroesImg from '../../assets/heroes.png' | ||
import logoImg from '../../assets/logo.svg' | ||
|
||
export default function Register(){ | ||
return( | ||
<div className="register-container"> | ||
<div className="content"> | ||
<section> | ||
<img src={logoImg} alt="Be The Hero"></img> | ||
<h1>Cadastro</h1> | ||
<p>Faça seu cadastro</p> | ||
<Link className="back-link" to="/"> | ||
<FiArrowLeft size={16} color="#e02041"></FiArrowLeft> | ||
Não tenho Cadastro | ||
</Link> | ||
</section> | ||
|
||
<form> | ||
<input placeholder="Nome da ONG"></input> | ||
<input type="email" placeholder="E-mail"/> | ||
<input type="number" placeholder="Whatsapp"/> | ||
|
||
<div className="input-group"> | ||
<input type="text" placeholder="Cidade"/> | ||
<input type="text" placeholder="UF" style={{width:80}}/> | ||
</div> | ||
<button className="button" type="submit">Cadastrar</button> | ||
|
||
</form> | ||
</div> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.