Forms update

This commit is contained in:
Douglas Barone 2020-12-09 13:21:56 -04:00
parent 839e26901d
commit 9f663419c2
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
<template> <template>
<v-card :loading="loading" flat> <v-card :loading="loading" flat outlined>
<v-card-title class="font-weight-light display-1 mb-2"> <v-card-title class="font-weight-light display-1 mb-2">
Criar token Criar token
</v-card-title> </v-card-title>

View File

@ -12,7 +12,7 @@
:type="show ? 'text' : 'password'" :type="show ? 'text' : 'password'"
outlined outlined
rounded rounded
name="password" name="new-password"
label="Nova senha" label="Nova senha"
:hint="strengthTips ? passwordStrength.message : ''" :hint="strengthTips ? passwordStrength.message : ''"
:append-icon="show ? 'mdi-eye-outline' : 'mdi-eye-off-outline'" :append-icon="show ? 'mdi-eye-outline' : 'mdi-eye-off-outline'"

View File

@ -1,5 +1,5 @@
<template> <template>
<v-card :loading="loading" flat> <v-card :loading="loading" flat outlined>
<v-card-title class="font-weight-light display-1 mb-2"> <v-card-title class="font-weight-light display-1 mb-2">
Alterar uma senha Alterar uma senha
</v-card-title> </v-card-title>

View File

@ -1,5 +1,5 @@
<template> <template>
<v-card :loading="loading" flat> <v-card :loading="loading" flat outlined>
<v-card-title class="display-1 font-weight-light mb-2"> <v-card-title class="display-1 font-weight-light mb-2">
Alterar minha senha Alterar minha senha
</v-card-title> </v-card-title>

View File

@ -1,7 +1,7 @@
<template> <template>
<v-container style="height: 90vh" fluid> <v-container style="height: 90vh" fluid>
<v-row class="fill-height" justify="center"> <v-row class="fill-height" justify="center">
<v-col> <v-col style="max-width: 480px">
<CreateTokenForm /> <CreateTokenForm />
</v-col> </v-col>
</v-row> </v-row>