mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
33 lines
982 B
Vue
33 lines
982 B
Vue
<template>
|
|
<AuthContentWrapper ref="auth" class="h-screen">
|
|
<AuthContent :visible="true">
|
|
<Headline
|
|
:title="$t('temporary_unavailable')"
|
|
:description="$t('shared_link_temporary_unavailable')"
|
|
/>
|
|
|
|
<span class="additional-link"
|
|
>{{ $t('page_registration.have_an_account') }}
|
|
<router-link :to="{ name: 'SignIn' }" class="text-theme font-bold">
|
|
{{ $t('log_in') }}
|
|
</router-link>
|
|
</span>
|
|
</AuthContent>
|
|
</AuthContentWrapper>
|
|
</template>
|
|
|
|
<script>
|
|
import AuthContentWrapper from '../components/Layout/AuthPages/AuthContentWrapper'
|
|
import AuthContent from '../components/Layout/AuthPages/AuthContent'
|
|
import Headline from '../components/UI/Labels/LogoHeadline'
|
|
|
|
export default {
|
|
name: 'TemporaryUnavailable',
|
|
components: {
|
|
AuthContentWrapper,
|
|
AuthContent,
|
|
Headline,
|
|
},
|
|
}
|
|
</script>
|