20e1d5a6b5
Mueve la página de login a /log-in y actualiza todas las referencias (enlace CONECTAR del header y los redirect de auth de ~45 páginas). /login ahora da 404. La API /api/auth/login no se toca (solo la ruta de página). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
26 lines
886 B
TypeScript
26 lines
886 B
TypeScript
import { getTranslations, setRequestLocale } from 'next-intl/server'
|
|
import { redirect } from '@/i18n/navigation'
|
|
import { getSession } from '@/lib/session'
|
|
import { PageShell } from '@/components/PageShell'
|
|
import { ServiceBox } from '@/components/ServiceBox'
|
|
import { ChangePasswordForm } from './ChangePasswordForm'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export default async function ChangePasswordPage({ params }: { params: Promise<{ locale: string }> }) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
const t = await getTranslations('ChangePassword')
|
|
const session = await getSession()
|
|
if (!session.bnetId) redirect({ href: '/log-in', locale })
|
|
if (!session.username) redirect({ href: '/select-account', locale })
|
|
|
|
return (
|
|
<PageShell title={t('title')}>
|
|
<ServiceBox>
|
|
<ChangePasswordForm />
|
|
</ServiceBox>
|
|
</PageShell>
|
|
)
|
|
}
|