change login page icon

This commit is contained in:
Thomas Amland 2021-03-21 17:39:24 +01:00
parent 41eb1e9ca3
commit 2fc640c34b
2 changed files with 6 additions and 4 deletions

View File

@ -7,8 +7,8 @@
<b-overlay rounded :show="busy" opacity="0.1"> <b-overlay rounded :show="busy" opacity="0.1">
<div class="card-body"> <div class="card-body">
<form @submit.prevent="login"> <form @submit.prevent="login">
<div style="font-size: 4rem; color: #fff;" class="text-center"> <div style="width: 160px;" class="d-flex mx-auto mb-2">
<Icon icon="person-circle" /> <Logo />
</div> </div>
<b-form-group v-if="!config.serverUrl" label="Server"> <b-form-group v-if="!config.serverUrl" label="Server">
<b-form-input v-model="server" name="server" type="text" :state="valid" /> <b-form-input v-model="server" name="server" type="text" :state="valid" />
@ -36,8 +36,12 @@
<script lang="ts"> <script lang="ts">
import Vue from 'vue' import Vue from 'vue'
import { config } from '@/shared/config' import { config } from '@/shared/config'
import Logo from '@/app/Logo.vue'
export default Vue.extend({ export default Vue.extend({
components: {
Logo,
},
props: { props: {
returnTo: { type: String, required: true }, returnTo: { type: String, required: true },
}, },

View File

@ -25,7 +25,6 @@
BIconThreeDotsVertical, BIconThreeDotsVertical,
BIconBoxArrowRight, BIconBoxArrowRight,
BIconPersonFill, BIconPersonFill,
BIconPersonCircle,
BIconRss, BIconRss,
BIconX, BIconX,
BIconVolumeUpFill, BIconVolumeUpFill,
@ -55,7 +54,6 @@
BIconThreeDotsVertical, BIconThreeDotsVertical,
BIconBoxArrowRight, BIconBoxArrowRight,
BIconPersonFill, BIconPersonFill,
BIconPersonCircle,
BIconRss, BIconRss,
BIconX, BIconX,
BIconVolumeUpFill, BIconVolumeUpFill,