Files
vuefilemanager/resources/js/views/Auth/SuccessfullySendEmail.vue
2022-02-16 16:57:57 +01:00

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>