aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/login
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/views/login')
-rw-r--r--FrontEnd/src/views/login/index.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/FrontEnd/src/views/login/index.tsx b/FrontEnd/src/views/login/index.tsx
index a39a9972..55bd2f8c 100644
--- a/FrontEnd/src/views/login/index.tsx
+++ b/FrontEnd/src/views/login/index.tsx
@@ -1,7 +1,6 @@
import React from "react";
import { useHistory } from "react-router";
import { useTranslation } from "react-i18next";
-import { Container, Form } from "react-bootstrap";
import { useUser, userService } from "@/services/user";
@@ -79,7 +78,7 @@ const LoginPage: React.FC = (_) => {
};
return (
- <Container fluid className="login-container mt-2">
+ <div className="login-container container-fluid mt-2">
<h1 className="text-center">{t("welcome")}</h1>
<Form>
<Form.Group>
@@ -146,7 +145,7 @@ const LoginPage: React.FC = (_) => {
</LoadingButton>
</div>
</Form>
- </Container>
+ </div>
);
};