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