mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-20 17:02:16 +00:00
34 lines
954 B
Vue
34 lines
954 B
Vue
<template>
|
|
<AuthContentWrapper class="h-screen">
|
|
<AuthContent :visible="true">
|
|
<Headline
|
|
:title="$t('page_email_successfully_send.title')"
|
|
:description="$t('page_email_successfully_send.subtitle')"
|
|
/>
|
|
|
|
<span class="block">
|
|
<router-link :to="{ name: 'Homepage' }" class="text-theme font-bold">
|
|
{{ $t('go_home') }}
|
|
</router-link>
|
|
</span>
|
|
</AuthContent>
|
|
</AuthContentWrapper>
|
|
</template>
|
|
|
|
<script>
|
|
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
|
|
import AuthContent from '../../components/Auth/AuthContent'
|
|
import AuthButton from '../../components/Auth/AuthButton'
|
|
import Headline from './Headline'
|
|
|
|
export default {
|
|
name: 'SuccessfullySendEmail',
|
|
components: {
|
|
AuthContentWrapper,
|
|
AuthContent,
|
|
AuthButton,
|
|
Headline,
|
|
},
|
|
}
|
|
</script>
|