0ac4beaaa8
- Add requireAuth() to admin-permissions.ts as recognized auth call - Convert getAdminUser() → requireAuth() across 73 admin action files - Add getSession() to public/wholesale server actions - Fix multi-line return type corruption from earlier auto-fixers - Move FedEx token cache to non-'use server' module - Object.freeze module-level constants: PRICE_KEYS, EMPTY_MOBILE_DASHBOARD, EMPTY_PAY_PERIOD, LOCALE_CART_SUBJECT, WELCOME_EMAILS - Update Stripe API version 2026-05-27 → 2026-06-24 - Fix wholesale employee portal: getEmployeeSessionAction + EmployeePortalClient - Fix 51 TypeScript errors (return type corruption, missing imports)
126 lines
4.5 KiB
TypeScript
126 lines
4.5 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import Link from "next/link";
|
|
import { getCurrentUserId } from "@/actions/admin/password";
|
|
|
|
export default function ChangePasswordPage() {
|
|
const router = useRouter();
|
|
const [password, setPassword] = useState("");
|
|
const [confirm, setConfirm] = useState("");
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
async function handleSubmit(e: React.FormEvent<HTMLFormElement>) {
|
|
e.preventDefault();
|
|
setError(null);
|
|
|
|
if (password.length < 8) {
|
|
setError("Password must be at least 8 characters.");
|
|
return;
|
|
}
|
|
if (password !== confirm) {
|
|
setError("Passwords do not match.");
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
|
|
try {
|
|
const res = await fetch("/api/auth/change-password", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ password }),
|
|
});
|
|
|
|
const data = await res.json();
|
|
|
|
if (!res.ok || data.error) {
|
|
setError(data.message ?? data.error ?? "Failed to update password.");
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
router.push("/admin");
|
|
router.refresh();
|
|
} catch {
|
|
setError("An unexpected error occurred. Please try again.");
|
|
setLoading(false);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<main className="min-h-screen bg-zinc-950 px-6 py-12 flex items-start justify-center">
|
|
<div className="w-full max-w-md">
|
|
<div className="rounded-2xl bg-zinc-900 border border-zinc-800 p-8">
|
|
<div className="mb-6 flex h-12 w-12 items-center justify-center rounded-full bg-amber-900/30 border border-amber-700/40">
|
|
<svg className="h-6 w-6 text-amber-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 7a2 2 0 012 2m4 0a6 6 0 01-7.743 5.743L11 17H9v2H7v2H4a1 1 0 01-1-1v-2.586a1 1 0 01.293-.707l5.964-5.964A6 6 0 1121 9z" />
|
|
</svg>
|
|
</div>
|
|
<h1 className="text-2xl font-bold text-zinc-100">Change Password</h1>
|
|
<p className="mt-1 text-sm text-zinc-500">
|
|
You must set a new password before continuing.
|
|
</p>
|
|
|
|
<form onSubmit={handleSubmit} className="mt-6 space-y-4">
|
|
{error && (
|
|
<div className="rounded-xl bg-red-900/20 border border-red-800/50 p-4 text-sm text-red-400">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-zinc-400 mb-1">
|
|
New Password
|
|
</label>
|
|
<input aria-label=". 8 Characters"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
required
|
|
minLength={8}
|
|
className="w-full rounded-xl border border-zinc-700 bg-zinc-800 px-4 py-3 text-zinc-100 placeholder:text-zinc-600 outline-none focus:border-violet-500 transition-colors"
|
|
placeholder="Min. 8 characters"
|
|
autoFocus
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-zinc-400 mb-1">
|
|
Confirm Password
|
|
</label>
|
|
<input aria-label="Repeat Password"
|
|
type="password"
|
|
value={confirm}
|
|
onChange={(e) => setConfirm(e.target.value)}
|
|
required
|
|
className="w-full rounded-xl border border-zinc-700 bg-zinc-800 px-4 py-3 text-zinc-100 placeholder:text-zinc-600 outline-none focus:border-violet-500 transition-colors"
|
|
placeholder="Repeat password"
|
|
/>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full rounded-xl bg-violet-600 hover:bg-violet-500 px-6 py-4 text-base font-bold text-white disabled:opacity-50 transition-colors"
|
|
>
|
|
{loading ? "Updating..." : "Update Password"}
|
|
</button>
|
|
</form>
|
|
|
|
<div className="mt-4 border-t border-zinc-800 pt-4">
|
|
<Link
|
|
href="/logout"
|
|
className="block text-center text-sm text-zinc-500 hover:text-zinc-300 transition-colors"
|
|
>
|
|
Sign out instead
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|