Refactor project structure and update dependencies
This commit is contained in:
21
nuxt/app/pages/password-reset/[token].vue
Normal file
21
nuxt/app/pages/password-reset/[token].vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<script setup lang="ts">
|
||||
import AuthResetPasswordForm from '~/components/auth/AuthResetPasswordForm.vue'
|
||||
|
||||
definePageMeta({ middleware: ['guest'], layout: 'auth' })
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="mx-auto flex min-h-screen w-full items-center justify-center">
|
||||
<UCard class="w-96">
|
||||
<template #header>
|
||||
<h1 class="text-center text-2xl font-bold">
|
||||
Reset Password
|
||||
</h1>
|
||||
</template>
|
||||
<AuthResetPasswordForm />
|
||||
<!-- <UDivider label="OR" class=" my-4"/> -->
|
||||
</UCard>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user