mirror of
https://github.com/docmost/docmost.git
synced 2026-05-18 15:34:05 +08:00
36e720920b
* Add more html page titles * Make tables responsive * fix react query keys * Add tooltip to sidebar toggle * fix: trim inputs * fix inputs
15 lines
405 B
TypeScript
15 lines
405 B
TypeScript
import { ForgotPasswordForm } from "@/features/auth/components/forgot-password-form";
|
|
import { getAppName } from "@/lib/config";
|
|
import { Helmet } from "react-helmet-async";
|
|
|
|
export default function ForgotPassword() {
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>Forgot Password - {getAppName()}</title>
|
|
</Helmet>
|
|
<ForgotPasswordForm />
|
|
</>
|
|
);
|
|
}
|