Implement login-reset-password.ftl

This commit is contained in:
Joseph Garrone
2021-03-07 14:57:53 +01:00
parent 85fdaa2f22
commit 740d9b7af5
6 changed files with 109 additions and 7 deletions

View File

@ -6,7 +6,8 @@ import type { KcProps } from "./KcProps";
import { Login } from "./Login";
import { Register } from "./Register";
import { Info } from "./Info";
import { Error } from "./Error";
import { Error } from "./Error";
import { LoginResetPassword } from "./LoginResetPassword";
export const KcApp = memo((props: KcProps) => {
@ -18,6 +19,7 @@ export const KcApp = memo((props: KcProps) => {
case "register.ftl": return <Register {...props} />;
case "info.ftl": return <Info {...props} />;
case "error.ftl": return <Error {...props} />;
case "login-reset-password.ftl": return <LoginResetPassword {...props} />;
}
});