Layout adjusts

This commit is contained in:
Douglas Barone 2023-10-18 16:22:45 -04:00
parent 1d46b1cf79
commit bc772e1f55
2 changed files with 14 additions and 13 deletions

View File

@ -5,15 +5,8 @@
title="Fazer login na rede"
:loading="loading"
:disabled="loading"
:style="{ width: '480px' }"
>
<v-card-text class="mt-3">
<v-scale-transition>
<v-alert class="mb-5" type="error" v-if="error">
Não foi possível fazer login. Tente novamente. Se o problema
persistir, entre em contato com o SERTI do campus.
</v-alert>
</v-scale-transition>
<v-text-field
class="mb-3"
v-model="username"
@ -50,6 +43,12 @@
</v-btn>
</v-card-actions>
</v-card>
<v-scale-transition>
<v-alert class="mt-5" type="error" v-if="error">
Não foi possível fazer login. Tente novamente. Se o problema persistir,
entre em contato com o SERTI do campus.
</v-alert>
</v-scale-transition>
</v-form>
</template>

View File

@ -1,10 +1,12 @@
<template>
<v-container class="justify-center fill-height" fluid>
<div>
<logo class="mx-auto mb-4" :style="{ maxWidth: '256px' }" />
<login-form />
<ip-alert class="mt-5" />
</div>
<v-container class="justify-center">
<v-row justify="center">
<v-col lg="6">
<logo class="mx-auto mb-4" :style="{ maxWidth: '256px' }" />
<login-form />
<ip-alert class="mt-5" />
</v-col>
</v-row>
</v-container>
</template>