-
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
1 parent
f90ab32
commit 8984642
Showing
15 changed files
with
172 additions
and
108 deletions.
There are no files selected for viewing
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 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 |
---|---|---|
@@ -1,13 +1,55 @@ | ||
<template> | ||
<q-page></q-page> | ||
<q-page class="container"> | ||
<div class="row justify-center"> | ||
<img class="logo-ada" src="../../public/ADA2.png" height="100"/> | ||
</div> | ||
<div class="row align-data"> | ||
<div class="row col-12"> | ||
<div class="text-secondary text-body1 text-weight-bold"> Oi, Fulaninha </div> | ||
</div> | ||
<div class="row col-12"> | ||
<span class="text-secondary text-body1 text-weight-bold"> Conta: 111111-1 </span> | ||
</div> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<q-input dark filled dense bg-color="secondary" :type="isPwd ? 'password' : 'text'"> | ||
<template v-slot:append> | ||
<q-icon | ||
:name="isPwd ? 'visibility_off' : 'visibility'" | ||
class="cursor-pointer" | ||
color="white" | ||
@click="isPwd = !isPwd" | ||
/> | ||
</template> | ||
</q-input> | ||
<span class="text-secondary"> Esqueci minha senha </span> | ||
</div> | ||
<div class="row col-12 justify-center"> | ||
<q-btn label="entrar" color="secondary" dense class="btn"/> | ||
</div> | ||
<div class="row col-12 justify-center container-logo-bmg"> | ||
<img src="../../public/banco-bmg-logo.png" height="35px"/> | ||
</div> | ||
</q-page> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
data () { | ||
return { | ||
isPwd: true | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style> | ||
.btn { | ||
height: 35px; | ||
padding: 0 11%; | ||
margin: 15% 0 10% 0; | ||
} | ||
.align-data { | ||
padding: 10% 0 18% 20% | ||
} | ||
</style> |
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,60 @@ | ||
<template> | ||
<q-page class="row justify-center"> | ||
<div class="row justify-center col-12"> | ||
<span class="text-h6 text-secondary"> ABRA SUA CONTA </span> | ||
</div> | ||
<div class="row justify-center col-12"> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> Nome Completo </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> E-mail </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> Senha </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> Insira novamente sua senha </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> CPF </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> RG </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
</div> | ||
<sign-up-second ref="SignUpSecond"/> | ||
<div class="row col-8 borda justify-center q-pt-lg"> | ||
<q-btn label="avançar" color="secondary" dense class="q-px-lg btn" @click="next()"/> | ||
</div> | ||
</q-page> | ||
</template> | ||
|
||
<script> | ||
import SignUpSecond from '../components/SignUpSecond' | ||
export default { | ||
components: { | ||
SignUpSecond | ||
}, | ||
data () { | ||
return { | ||
labelButton: 'Avançar' | ||
} | ||
}, | ||
methods: { | ||
next () { | ||
this.$router.push('/cadastrar-segunda-etapa') | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style> | ||
</style> |
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 @@ | ||
<template> | ||
<q-page class="row justify-center"> | ||
<div class="row justify-center col-12"> | ||
<span class="text-h6 text-secondary"> ABRA SUA CONTA </span> | ||
</div> | ||
<div class="row justify-center col-12"> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> Gênero </span> | ||
<q-radio dense color="secondary" label="Feminino" class="col-12 text-secondary"/> | ||
<q-radio dense color="secondary" label="Outros" class="col-6 text-secondary"/> | ||
<q-input class="col-6 q-mb-md" color="secondary" dense label="Qual"/> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> Data de nascimento </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> Celular </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
<div class="row col-8 justify-center"> | ||
<span class="col-12 text-secondary"> Telefone </span> | ||
<q-input dense dark bg-color="secondary" class="col-12"/> | ||
</div> | ||
<div class="row col-8 justify-center q-pt-sm"> | ||
<q-radio dense color="secondary" label="Li e concordo com os termos de uso e políticas de privacidade." class="col-12"/> | ||
</div> | ||
</div> | ||
<div class="row col-8 borda justify-center q-pt-lg"> | ||
<q-btn label="criar Conta" color="secondary" dense class="q-px-lg btn" @click="createCount()"/> | ||
</div> | ||
</q-page> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
methods: { | ||
createCount () {} | ||
} | ||
} | ||
</script> |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,13 @@ | ||
export default function () { | ||
return { | ||
form: { | ||
name: '', | ||
email: '', | ||
cpf: '', | ||
rg: '', | ||
genre: '', | ||
birthDate: '', | ||
cellphone: '' | ||
} | ||
} | ||
} |
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.