diff --git a/src/Gargantext/Components/ForgotPassword.purs b/src/Gargantext/Components/ForgotPassword.purs index 1e36ca19fd988953c953bc743ee38e5cb1bb5e71..e172c77f0d61583264c0776c095f3c80fa6608d6 100644 --- a/src/Gargantext/Components/ForgotPassword.purs +++ b/src/Gargantext/Components/ForgotPassword.purs @@ -24,9 +24,9 @@ forgotPasswordLayoutCpt = here.component "forgotPasswordLayout" cpt where , loader: loadPassword , path: { server, uuid } , render: \{ password } -> - H.div { className:"justify-content-center" } [ - H.img { src: "images/logo.png" } - , H.p {} [ H.text ("Your new password is: " <> password) ] + H.div { className:"container text-center justify-content-center" } [ + H.div {className: "row"} [ H.div {className: "mx-auto"} [ H.img { src: "images/logo.png" } ] ] + , H.div {className: "row"} [ H.div {className: "col"} [ H.text ("Your new password is: " <> password) ] ] ]} where errorHandler = logRESTError here "[forgotPasswordLayout]"