Footer: Add back footer to login page (#25656)

pull/22879/head^2
Torkel Ödegaard 5 years ago committed by GitHub
parent 157e54067d
commit 491b8680f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      public/app/core/components/Login/LoginPage.tsx

@ -11,6 +11,7 @@ import { ChangePassword } from './ChangePassword';
import { Branding } from 'app/core/components/Branding/Branding'; import { Branding } from 'app/core/components/Branding/Branding';
import { useStyles } from '@grafana/ui'; import { useStyles } from '@grafana/ui';
import { GrafanaTheme } from '@grafana/data'; import { GrafanaTheme } from '@grafana/data';
import { Footer } from '../Footer/Footer';
export const LoginPage: FC = () => { export const LoginPage: FC = () => {
document.title = Branding.AppTitle; document.title = Branding.AppTitle;
@ -65,9 +66,9 @@ export const LoginPage: FC = () => {
</div> </div>
)} )}
</LoginCtrl> </LoginCtrl>
<div className="clearfix" />
</div> </div>
<Footer />
</Branding.LoginBackground> </Branding.LoginBackground>
); );
}; };

Loading…
Cancel
Save