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>
<v-card :loading="loading" flat>
<v-card :loading="loading" flat outlined>
<v-card-title class="font-weight-light display-1 mb-2">
Criar token
</v-card-title>

View File

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

View File

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

View File

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

View File

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