Files
vuefilemanager/resources/js/views/Auth/SuccessfullySendEmail.vue
T
2022-01-28 13:48:42 +01:00

34 lines
944 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="font-bold text-theme">
{{ $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>