Files
myeasycms-v2/apps/web/app/update-password/page.tsx
giancarlo cb8b23e8c0 Remove billing and checkout redirect buttons and related services
Deleted the billing-redirect-button, checkout-redirect-button, and embedded-stripe-checkout components. Additionally, removed the shadcn directory, which encompassed billing-related icons. This change streamlines the subscription settings interface and organizes the system's payment management. This update is a stepping stone towards improving the billing system's overall architecture.
2024-03-25 11:39:41 +08:00

27 lines
768 B
TypeScript

import { redirect } from 'next/navigation';
import { AuthLayoutShell } from '@kit/auth/shared';
import PasswordResetForm from '@kit/auth/src/components/password-reset-form';
import { getSupabaseServerComponentClient } from '@kit/supabase/server-component-client';
import pathsConfig from '~/config/paths.config';
import { withI18n } from '~/lib/i18n/with-i18n';
async function PasswordResetPage() {
const client = getSupabaseServerComponentClient();
const user = await client.auth.getUser();
// we require the user to be logged in to access this page
if (!user.data) {
redirect(pathsConfig.auth.passwordReset);
}
return (
<AuthLayoutShell>
<PasswordResetForm />
</AuthLayoutShell>
);
}
export default withI18n(PasswordResetPage);