Page verifyemail

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-20 16:17:17 +07:00
parent 751f40eb1f
commit 409b58c82c
2 changed files with 40 additions and 0 deletions

View file

@ -5,6 +5,7 @@ const Dashboard = () => import("@/views/Dashboard.vue");
const Error404NotFound = () => import("@/views/Error404NotFound.vue");
const loginView = () => import("@/views/login.vue");
const ErrorPermission = () => import("@/views/ErrorPermission.vue");
const VerifyEmail = () => import("@/views/VerifyEmail.vue");
// import ModuleMetadata from "@/modules/01_metadata/router";
import ModuleMetadataNew from "@/modules/01_masterdata/router";
@ -99,6 +100,11 @@ const router = createRouter({
Auth: false,
},
},
{
path: "/verifyemail",
name: "verifyemail",
component: VerifyEmail,
},
{
path: "/auth",
name: "auth",

34
src/views/VerifyEmail.vue Normal file
View file

@ -0,0 +1,34 @@
<script setup lang="ts"></script>
<template>
<div
class="bg-light text-center q-pa-md flex flex-center"
style="
height: 90vh;
background: linear-gradient(to bottom, #e0f7fa, #ffffff);
"
>
<div class="card">
<!-- <div class="header"> -->
<q-icon name="mdi-check-decagram" color="blue" size="64px" />
<div class="text-h4 text-primary q-mt-md">Verify Your Email</div>
<!-- <div class="text-subtitle2 text-grey-7 q-mt-xs">
Please check your inbox to confirm your email address.
</div> -->
<!-- </div> -->
<q-btn
class="q-mt-xl"
color="primary"
text-color="white"
to="/"
label="กลับหน้าหลัก"
no-caps
rounded
size="lg"
/>
</div>
</div>
</template>
<style scoped></style>