mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
41 lines
1.3 KiB
Vue
41 lines
1.3 KiB
Vue
<template>
|
|
<AuthContentWrapper>
|
|
<AuthContent :visible="true">
|
|
<img v-if="config.app_logo" class="logo mx-auto" :src="$getImage(config.app_logo)" :alt="config.app_name">
|
|
<b v-if="! config.app_logo" class="auth-logo-text">{{ config.app_name }}</b>
|
|
|
|
<h1>{{ $t('page_email_successfully_verified.title') }}</h1>
|
|
<h2>{{ $t('page_email_successfully_verified.subtitle') }}</h2>
|
|
|
|
<a href="/sign-in">
|
|
<AuthButton icon="chevron-right" :text="$t('page_sign_in.button_log_in')"/>
|
|
</a>
|
|
|
|
</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 {mapGetters} from 'vuex'
|
|
|
|
export default {
|
|
name: 'SuccessfullyEmailVerified',
|
|
components: {
|
|
AuthContentWrapper,
|
|
AuthContent,
|
|
AuthButton,
|
|
},
|
|
computed: {
|
|
...mapGetters(['config']),
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '/resources/sass/vuefilemanager/_auth-form';
|
|
@import '/resources/sass/vuefilemanager/_auth';
|
|
</style>
|