mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
37 lines
1.1 KiB
Vue
37 lines
1.1 KiB
Vue
<template>
|
|
<AuthContentWrapper ref="auth">
|
|
<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'}">
|
|
{{ $t('page_forgotten_password.password_remember_button') }}
|
|
</router-link>
|
|
</span>
|
|
</AuthContent>
|
|
</AuthContentWrapper>
|
|
</template>
|
|
|
|
<script>
|
|
import AuthContentWrapper from '/resources/js/components/Auth/AuthContentWrapper'
|
|
import AuthContent from '/resources/js/components/Auth/AuthContent'
|
|
import AuthButton from '/resources/js/components/Auth/AuthButton'
|
|
import Headline from "./Auth/Headline"
|
|
|
|
export default {
|
|
name: 'NotFound',
|
|
components: {
|
|
AuthContentWrapper,
|
|
AuthContent,
|
|
AuthButton,
|
|
Headline,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '/resources/sass/vuefilemanager/_auth';
|
|
</style>
|