mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
35 lines
1.1 KiB
Vue
35 lines
1.1 KiB
Vue
<template>
|
|
<AuthContentWrapper ref="auth" class="h-screen">
|
|
<AuthContent :visible="true">
|
|
<Headline :title="$t('page_shared_404.title')" :description="$t('page_shared_404.subtitle')" />
|
|
<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 AuthButton from '../components/UI/Buttons/AuthButton'
|
|
import Headline from '../components/UI/Labels/LogoHeadline'
|
|
|
|
export default {
|
|
name: 'NotFound',
|
|
components: {
|
|
AuthContentWrapper,
|
|
AuthContent,
|
|
AuthButton,
|
|
Headline,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '../../sass/vuefilemanager/auth';
|
|
</style>
|