Footer: added back missing footer to login page (#21720)

This commit is contained in:
Torkel Ödegaard 2020-01-24 12:35:54 +01:00 committed by GitHub
parent 63a912629d
commit 198f561541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@ import LoginCtrl from './LoginCtrl';
import { LoginForm } from './LoginForm';
import { ChangePassword } from './ChangePassword';
import { Branding } from 'app/core/components/Branding/Branding';
import { Footer } from 'app/core/components/Footer/Footer';
export const LoginPage: FC = () => {
return (
@ -62,6 +63,7 @@ export const LoginPage: FC = () => {
<div className="clearfix" />
</div>
<Footer />
</Branding.LoginBackground>
);
};