Files
crewli/resources/vuexy-admin-v10.11.1/nuxt-version/javascript-version/full-version/pages/pages/authentication/two-steps-v2.vue

146 lines
3.8 KiB
Vue

<script setup>
import { useGenerateImageVariant } from '@core/composable/useGenerateImageVariant'
import authV2TwoStepIllustrationDark from '@images/pages/auth-v2-two-step-illustration-dark.png'
import authV2TwoStepIllustrationLight from '@images/pages/auth-v2-two-step-illustration-light.png'
import authV2MaskDark from '@images/pages/misc-mask-dark.png'
import authV2MaskLight from '@images/pages/misc-mask-light.png'
import { VNodeRenderer } from '@layouts/components/VNodeRenderer'
import { themeConfig } from '@themeConfig'
definePageMeta({
layout: 'blank',
public: true,
})
const authThemeImg = useGenerateImageVariant(authV2TwoStepIllustrationLight, authV2TwoStepIllustrationDark)
const authThemeMask = useGenerateImageVariant(authV2MaskLight, authV2MaskDark)
const router = useRouter()
const otp = ref('')
const isOtpInserted = ref(false)
const onFinish = () => {
isOtpInserted.value = true
setTimeout(() => {
isOtpInserted.value = false
router.push('/')
}, 2000)
}
</script>
<template>
<NuxtLink to="/">
<div class="auth-logo d-flex align-center gap-x-3">
<VNodeRenderer :nodes="themeConfig.app.logo" />
<h1 class="auth-title">
{{ themeConfig.app.title }}
</h1>
</div>
</NuxtLink>
<VRow
class="auth-wrapper bg-surface"
no-gutters
>
<VCol
md="8"
class="d-none d-md-flex"
>
<div class="position-relative bg-background w-100 me-0">
<div
class="d-flex align-center justify-center w-100 h-100"
style="padding-inline: 150px;"
>
<VImg
max-width="468"
:src="authThemeImg"
class="auth-illustration mt-16 mb-2"
/>
</div>
<img
class="auth-footer-mask flip-in-rtl"
:src="authThemeMask"
alt="auth-footer-mask"
height="280"
width="100"
>
</div>
</VCol>
<VCol
cols="12"
md="4"
class="auth-card-v2 d-flex align-center justify-center"
>
<VCard
flat
:max-width="500"
class="mt-12 mt-sm-0 pa-6"
>
<VCardText>
<h4 class="text-h4 mb-1">
Two Step Verification 💬
</h4>
<p class="mb-1">
We sent a verification code to your mobile. Enter the code from the mobile in the field below.
</p>
<h6 class="text-h6">
******1234
</h6>
</VCardText>
<VCardText>
<VForm @submit.prevent="() => {}">
<VRow>
<!-- email -->
<VCol cols="12">
<h6 class="text-body-1">
Type your 6 digit security code
</h6>
<VOtpInput
v-model="otp"
:disabled="isOtpInserted"
type="number"
class="pa-0"
@finish="onFinish"
/>
</VCol>
<!-- reset password -->
<VCol cols="12">
<VBtn
block
:loading="isOtpInserted"
:disabled="isOtpInserted"
type="submit"
>
Verify my account
</VBtn>
</VCol>
<!-- back to login -->
<VCol cols="12">
<div class="d-flex justify-center align-center flex-wrap">
<span class="me-1">Didn't get the code?</span>
<a href="#">Resend</a>
</div>
</VCol>
</VRow>
</VForm>
</VCardText>
</VCard>
</VCol>
</VRow>
</template>
<style lang="scss">
@use "@core/scss/template/pages/page-auth.scss";
.v-otp-input {
.v-otp-input__content {
padding-inline: 0;
}
}
</style>