forget and recover password functionalities

This commit is contained in:
Edd
2026-01-18 01:37:27 +00:00
parent 0fe0b444c2
commit 9c0dca8f13
11 changed files with 333 additions and 145 deletions
+4 -5
View File
@@ -1,5 +1,5 @@
<template>
<title> Profile - {{user.name}}</title>
<title> Profile - {{ user.name }}</title>
<div class="min-h-screen bg-slate-50 font-sans text-slate-900 selection:bg-blue-100 pb-12">
<div class="container mx-auto max-w-7xl px-4 py-8 md:py-12">
@@ -13,11 +13,10 @@
<div
class="h-32 w-32 rounded-full border-4 border-white bg-slate-100 overflow-hidden shadow-md ring-1 ring-slate-200">
<img :src="user.avatarUrl" :alt="user.name"
class="h-full w-full object-cover transition-transform hover:scale-105" />
class="h-full w-full object-cover transition-transform hover:scale-105">
</div>
<div class="absolute bottom-2 right-2 h-5 w-5 rounded-full border-[3px] border-white shadow-sm"
:class="user.isActive ? 'bg-emerald-500' : 'bg-gray-400'" title="Online Status">
</div>
:class="user.isActive ? 'bg-emerald-500' : 'bg-gray-400'" title="Online Status" />
</div>
<h1 class="text-2xl font-bold text-slate-900 tracking-tight">{{ user.name }}</h1>
@@ -139,7 +138,7 @@
class="mt-4 pt-4 border-t border-slate-50 flex flex-wrap items-center gap-4 text-xs font-medium z-10 relative">
<span
class="inline-flex items-center gap-1.5 px-2.5 py-1 rounded-full bg-blue-50 text-blue-700 border border-blue-100">
<span class="w-1.5 h-1.5 rounded-full bg-blue-500"></span>
<span class="w-1.5 h-1.5 rounded-full bg-blue-500" />
{{ pub.field }}
</span>
<span class="inline-flex items-center gap-1.5 text-slate-500">
+108
View File
@@ -0,0 +1,108 @@
<script setup>
const config = useRuntimeConfig();
const api = config.public.apiBase;
const authStore = useAuthStore();
const notifications = useNotificationStore();
const router = useRouter();
const passwordData = reactive({
oldPassword: "",
newPassword: "",
confirmNewPassword: ""
});
const error = ref(null);
const loading = ref(false);
async function handleUpdatePassword() {
error.value = null;
if (passwordData.newPassword !== passwordData.confirmNewPassword) {
error.value = "Passwords do not match.";
return;
}
loading.value = true;
try {
await $fetch(`${api}/users/me/password`, {
method: "PUT",
headers: {
Authorization: `Bearer ${authStore.token}`
},
body: {
oldPassword: passwordData.oldPassword,
newPassword: passwordData.newPassword,
confirmNewPassword: passwordData.confirmNewPassword
},
onResponse({ response }) {
if (response.status === 200) {
notifications.success("Password updated successfully.");
authStore.user.mustChangePassword = false;
router.push("/");
}
}
});
} catch (e) {
error.value = "Failed to update password. Please check your current password";
} finally {
loading.value = false;
}
}
</script>
<template>
<div
class="min-h-screen bg-gray-100 dark:bg-gray-950 flex flex-col items-center justify-center p-6 transition-colors duration-300">
<Transition appear enter-active-class="transition duration-700 ease-out"
enter-from-class="translate-y-8 opacity-0" enter-to-class="translate-y-0 opacity-100">
<div
class="w-full max-w-md bg-white dark:bg-gray-900 rounded-xl shadow-lg p-8 border dark:border-gray-800 transition-colors">
<h1 class="text-2xl font-bold text-gray-800 dark:text-white! mb-2 text-center">Password Update</h1>
<p class="text-sm text-gray-500 dark:text-gray-400 mb-8 text-center">Please update your password to
secure your account.</p>
<form class="space-y-5" @submit.prevent="handleUpdatePassword">
<div>
<label class="block text-sm font-semibold text-gray-600 dark:text-gray-400 mb-1.5 ml-1">Current
Password</label>
<input v-model="passwordData.oldPassword" type="password" required
class="w-full px-4 py-2.5 bg-gray-50 dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg focus:ring-2 focus:ring-blue-500 outline-none transition-all text-gray-900 dark:text-white"
placeholder="••••••••">
</div>
<hr class="border-gray-100 dark:border-gray-800 my-2">
<div>
<label class="block text-sm font-semibold text-gray-600 dark:text-gray-400 mb-1.5 ml-1">New
Password</label>
<input v-model="passwordData.newPassword" type="password" required
class="w-full px-4 py-2.5 bg-gray-50 dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg focus:ring-2 focus:ring-blue-500 outline-none transition-all text-gray-900 dark:text-white"
placeholder="••••••••">
</div>
<div>
<label class="block text-sm font-semibold text-gray-600 dark:text-gray-400 mb-1.5 ml-1">Confirm
New Password</label>
<input v-model="passwordData.confirmNewPassword" type="password" required
class="w-full px-4 py-2.5 bg-gray-50 dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg focus:ring-2 focus:ring-blue-500 outline-none transition-all text-gray-900 dark:text-white"
placeholder="••••••••">
</div>
<div v-if="error"
class="p-3 bg-red-100 dark:bg-red-900/30 border border-red-200 dark:border-red-800 rounded-lg text-red-700 dark:text-red-400 text-xs text-center">
{{ error }}
</div>
<div class="flex flex-col items-center gap-4 pt-4">
<button type="submit" :disabled="loading"
class="w-full bg-blue-600 hover:bg-blue-700 disabled:bg-blue-400 text-white font-bold py-3 rounded-lg shadow-md hover:shadow-lg transform active:scale-95 transition-all duration-200 capitalize">
{{ loading ? 'Updating...' : 'Update Password' }}
</button>
</div>
</form>
</div>
</Transition>
</div>
</template>