Skip to content
Snippets Groups Projects
Unverified Commit 63a86e31 authored by Ahmad Farhat's avatar Ahmad Farhat Committed by GitHub
Browse files

Fix double logo on require authentication view (#5490)

* Fix double logo on require authentication view

* eslint
parent 6486fee7
Branches
Tags
No related merge requests found
...@@ -19,7 +19,6 @@ import { Button, Form } from 'react-bootstrap'; ...@@ -19,7 +19,6 @@ import { Button, Form } from 'react-bootstrap';
import Card from 'react-bootstrap/Card'; import Card from 'react-bootstrap/Card';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import Logo from '../../../shared_components/Logo';
import useEnv from '../../../../hooks/queries/env/useEnv'; import useEnv from '../../../../hooks/queries/env/useEnv';
import ButtonLink from '../../../shared_components/utilities/ButtonLink'; import ButtonLink from '../../../shared_components/utilities/ButtonLink';
...@@ -28,10 +27,6 @@ export default function RequireAuthentication({ path }) { ...@@ -28,10 +27,6 @@ export default function RequireAuthentication({ path }) {
const { data: env } = useEnv(); const { data: env } = useEnv();
return ( return (
<div className="vertical-center">
<div className="text-center pb-4">
<Logo />
</div>
<Card className="col-xl-6 col-lg-7 col-md-9 col-10 mx-auto p-0 border-0 card-shadow text-center"> <Card className="col-xl-6 col-lg-7 col-md-9 col-10 mx-auto p-0 border-0 card-shadow text-center">
<Card.Body className="pt-4 px-5"> <Card.Body className="pt-4 px-5">
<p className="mb-0">{ t('room.settings.require_signed_in_message') }</p> <p className="mb-0">{ t('room.settings.require_signed_in_message') }</p>
...@@ -55,7 +50,6 @@ export default function RequireAuthentication({ path }) { ...@@ -55,7 +50,6 @@ export default function RequireAuthentication({ path }) {
} }
</Card.Footer> </Card.Footer>
</Card> </Card>
</div>
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment