mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
17 lines
293 B
TypeScript
17 lines
293 B
TypeScript
'use client';
|
|
import LoginForm from './LoginForm';
|
|
import styles from './LoginPage.module.css';
|
|
|
|
export function LoginPage() {
|
|
if (process.env.disableLogin) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className={styles.page}>
|
|
<LoginForm />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default LoginPage;
|