mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 16:32:15 +00:00
32 lines
942 B
Vue
32 lines
942 B
Vue
<template>
|
|
<AuthContentWrapper>
|
|
<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('page_sign_in.button_log_in')"/>
|
|
</router-link>
|
|
</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 "./Headline";
|
|
|
|
export default {
|
|
name: 'SuccessfullyEmailVerified',
|
|
components: {
|
|
AuthContentWrapper,
|
|
AuthContent,
|
|
AuthButton,
|
|
Headline,
|
|
},
|
|
}
|
|
</script>
|