mirror of
https://github.com/docmost/docmost.git
synced 2025-11-16 09:21:09 +10:00
* Add more html page titles * Make tables responsive * fix react query keys * Add tooltip to sidebar toggle * fix: trim inputs * fix inputs
15 lines
325 B
TypeScript
15 lines
325 B
TypeScript
import { LoginForm } from "@/features/auth/components/login-form";
|
|
import { Helmet } from "react-helmet-async";
|
|
import {getAppName} from "@/lib/config.ts";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>Login - {getAppName()}</title>
|
|
</Helmet>
|
|
<LoginForm />
|
|
</>
|
|
);
|
|
}
|