20 lines
488 B
TypeScript
20 lines
488 B
TypeScript
/**
|
|||
|
|
* LoginPage — placeholder for M2-T07.
|
||
|
|
*
|
||
|
|
* T07 replaces this with the real login form (username/password → POST /api/auth/login,
|
||
|
|
* force-password-change flow, redirect to home on success).
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { Container, Title, Text } from '@mantine/core'
|
||
|
|
|
||
|
|
export function LoginPage() {
|
||
|
|
return (
|
||
|
|
<Container size="xs" pt="xl">
|
||
|
|
<Title order={2}>Login</Title>
|
||
|
|
<Text c="dimmed" mt="sm">
|
||
|
|
Login form — implemented in M2-T07.
|
||
|
|
</Text>
|
||
|
|
</Container>
|
||
|
|
)
|
||
|
|
}
|