mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-17 15:52:15 +00:00
32 lines
966 B
Vue
32 lines
966 B
Vue
<template>
|
|
<AuthContentWrapper class="h-screen">
|
|
<AuthContent :visible="true">
|
|
<Headline
|
|
:title="$t('page_email_successfully_verified.title')"
|
|
:description="$t('page_email_successfully_verified.subtitle')"
|
|
/>
|
|
|
|
<router-link :to="{ name: 'SignIn' }">
|
|
<AuthButton icon="chevron-right" :text="$t('log_in')" />
|
|
</router-link>
|
|
</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: 'SuccessfullyEmailVerified',
|
|
components: {
|
|
AuthContentWrapper,
|
|
AuthContent,
|
|
AuthButton,
|
|
Headline,
|
|
},
|
|
}
|
|
</script>
|