mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 13:47:15 +01:00
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/layout/Layout';
|
|
import LoginForm from 'components/forms/LoginForm';
|
|
|
|
export default function LoginPage() {
|
|
if (process.env.loginDisabled) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Layout title="login" header={false} footer={false} center>
|
|
<LoginForm />
|
|
</Layout>
|
|
);
|
|
}
|