ajout background
This commit is contained in:
@@ -1,14 +1,15 @@
|
||||
import styles from "./LoginPage.module.css"
|
||||
import LoginForm from "../../components/form.jsx"
|
||||
import styles from "./LoginPage.module.css";
|
||||
import LoginForm from "../../components/form.jsx";
|
||||
import Background from "../../components/background.jsx";
|
||||
|
||||
function LoginPage(){
|
||||
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<LoginForm className={styles["login-form"]}/>
|
||||
</div>
|
||||
|
||||
)
|
||||
function LoginPage() {
|
||||
return (
|
||||
<Background>
|
||||
<div className={styles.container}>
|
||||
<LoginForm />
|
||||
</div>
|
||||
</Background>
|
||||
);
|
||||
}
|
||||
|
||||
export default LoginPage;
|
||||
Reference in New Issue
Block a user