159 lines
4.8 KiB
Vue
159 lines
4.8 KiB
Vue
<script setup>
|
|
import tree3 from '@images/misc/tree3.png'
|
|
import authV2ResetPasswordIllustrationBorderedDark from '@images/pages/auth-v2-reset-password-illustration-bordered-dark.png'
|
|
import authV2ResetPasswordIllustrationBorderedLight from '@images/pages/auth-v2-reset-password-illustration-bordered-light.png'
|
|
import authV2ResetPasswordIllustrationDark from '@images/pages/auth-v2-reset-password-illustration-dark.png'
|
|
import authV2ResetPasswordIllustrationLight from '@images/pages/auth-v2-reset-password-illustration-light.png'
|
|
import authV2MaskDark from '@images/pages/mask-v2-dark.png'
|
|
import authV2MaskLight from '@images/pages/mask-v2-light.png'
|
|
import { VNodeRenderer } from '@layouts/components/VNodeRenderer'
|
|
import { themeConfig } from '@themeConfig'
|
|
|
|
const authThemeImg = useGenerateImageVariant(authV2ResetPasswordIllustrationLight, authV2ResetPasswordIllustrationDark, authV2ResetPasswordIllustrationBorderedLight, authV2ResetPasswordIllustrationBorderedDark, true)
|
|
const authThemeMask = useGenerateImageVariant(authV2MaskLight, authV2MaskDark)
|
|
|
|
definePage({ meta: { layout: 'blank' } })
|
|
|
|
const form = ref({
|
|
newPassword: '',
|
|
confirmPassword: '',
|
|
})
|
|
|
|
const isPasswordVisible = ref(false)
|
|
const isConfirmPasswordVisible = ref(false)
|
|
</script>
|
|
|
|
<template>
|
|
<RouterLink 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>
|
|
</RouterLink>
|
|
|
|
<VRow
|
|
no-gutters
|
|
class="auth-wrapper"
|
|
>
|
|
<VCol
|
|
md="8"
|
|
class="d-none d-md-flex position-relative"
|
|
>
|
|
<div
|
|
class="d-flex align-center justify-end w-100 h-100 pa-10"
|
|
:class="$vuetify.locale.isRtl ? 'pe-10' : 'pe-0'"
|
|
>
|
|
<VImg
|
|
max-width="857"
|
|
:src="authThemeImg"
|
|
class="auth-illustration"
|
|
/>
|
|
</div>
|
|
|
|
<img
|
|
class="auth-footer-mask"
|
|
height="360"
|
|
:src="authThemeMask"
|
|
>
|
|
|
|
<div class="d-flex gap-x-2 auth-footer-tree">
|
|
<img
|
|
:src="tree3"
|
|
alt="tree image"
|
|
height="140"
|
|
>
|
|
<img
|
|
:src="tree3"
|
|
alt="tree image"
|
|
height="90"
|
|
width="50"
|
|
class="align-self-end"
|
|
>
|
|
</div>
|
|
</VCol>
|
|
|
|
<VCol
|
|
cols="12"
|
|
md="4"
|
|
class="auth-card-v2 d-flex align-center justify-center"
|
|
style="background-color: rgb(var(--v-theme-surface));"
|
|
>
|
|
<VCard
|
|
flat
|
|
:max-width="500"
|
|
class="mt-12 mt-sm-0 pa-4"
|
|
>
|
|
<VCardText>
|
|
<h4 class="text-h4 mb-1">
|
|
Reset Password 🔒
|
|
</h4>
|
|
<p class="mb-0">
|
|
Enter your email and we'll send you instructions to reset your password
|
|
</p>
|
|
</VCardText>
|
|
|
|
<VCardText>
|
|
<VForm @submit.prevent="() => {}">
|
|
<VRow>
|
|
<!-- password -->
|
|
<VCol cols="12">
|
|
<VTextField
|
|
v-model="form.newPassword"
|
|
autofocus
|
|
label="New Password"
|
|
placeholder="············"
|
|
:type="isPasswordVisible ? 'text' : 'password'"
|
|
:append-inner-icon="isPasswordVisible ? 'ri-eye-off-line' : 'ri-eye-line'"
|
|
@click:append-inner="isPasswordVisible = !isPasswordVisible"
|
|
/>
|
|
</VCol>
|
|
|
|
<!-- Confirm Password -->
|
|
<VCol cols="12">
|
|
<VTextField
|
|
v-model="form.confirmPassword"
|
|
label="Confirm Password"
|
|
placeholder="············"
|
|
:type="isConfirmPasswordVisible ? 'text' : 'password'"
|
|
:append-inner-icon="isConfirmPasswordVisible ? 'ri-eye-off-line' : 'ri-eye-line'"
|
|
@click:append-inner="isConfirmPasswordVisible = !isConfirmPasswordVisible"
|
|
/>
|
|
</VCol>
|
|
|
|
<!-- Set password -->
|
|
<VCol cols="12">
|
|
<VBtn
|
|
block
|
|
type="submit"
|
|
>
|
|
Set New Password
|
|
</VBtn>
|
|
</VCol>
|
|
|
|
<!-- back to login -->
|
|
<VCol cols="12">
|
|
<RouterLink
|
|
class="d-flex align-center justify-center"
|
|
:to="{ name: 'pages-authentication-login-v2' }"
|
|
>
|
|
<VIcon
|
|
icon="ri-arrow-left-s-line"
|
|
class="flip-in-rtl"
|
|
/>
|
|
<span>Back to login</span>
|
|
</RouterLink>
|
|
</VCol>
|
|
</VRow>
|
|
</VForm>
|
|
</VCardText>
|
|
</VCard>
|
|
</VCol>
|
|
</VRow>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@use "@core-scss/template/pages/page-auth.scss";
|
|
</style>
|