Files
home-automation/frontend/src/pages/LoginPage.tsx
T

20 lines
488 B
TypeScript
Raw Normal View History

/**
* 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>
)
}