Merge branch 'dev' into 'features/footer'

# Conflicts:
#   src/index.css
This commit is contained in:
JOSSERAND GIOVANNI p2405212
2025-10-24 12:34:24 +00:00
12 changed files with 3144 additions and 16 deletions
+17
View File
@@ -0,0 +1,17 @@
import styles from "./LoginPage.module.css";
import LoginForm from "../../components/form/form.jsx";
import Background from "../../components/background/background.jsx";
function LoginPage() {
return (
<Background>
<div className={styles.container}>
<LoginForm />
</div>
</Background>
);
}
export default LoginPage;
+15
View File
@@ -0,0 +1,15 @@
.container {
position: relative;
z-index: 2;
display: flex;
width: 30%;
overflow: hidden;
max-height: 80%;
justify-content: center;
align-items: center;
padding: 20px;
border-radius:12px;
}