setEmail(e.target.value)} required/>
- setPassword(e.target.value)} required/>
+ setPassword(e.target.value)} required/>
@@ -26,5 +26,77 @@ function LoginForm({ className }) {
);
}
+export default LoginForm;*/
+
+import { useState } from "react";
+import login from "../../utils/login.js";
+import getUser from "../../utils/getUser.js";
+import styles from "./form.module.css";
+
+function LoginForm({ className }) {
+ const [email, setEmail] = useState('');
+ const [password, setPassword] = useState('');
+ const [showPassword, setShowPassword] = useState(false);
+
+ async function handleSubmit(e) {
+ e.preventDefault();
+ await login(email, password);
+ getUser();
+ }
+
+ const toggleShowPassword = () => {
+ setShowPassword(!showPassword);
+ };
+
+ return (
+
+
+ setEmail(e.target.value)}
+ required
+ />
+
+
+
+ setPassword(e.target.value)}
+ required
+ style={{ width: '100%', paddingRight: '40px' }} // Espace pour le bouton
+ />
+
+
+
+
+
+
+
+ );
+}
+
export default LoginForm;
diff --git a/src/components/form/form.module.css b/src/components/form/form.module.css
index a58ec84..009b834 100644
--- a/src/components/form/form.module.css
+++ b/src/components/form/form.module.css
@@ -5,9 +5,10 @@ input {
padding: 0px 10px;
border: none;
border-radius: 10px;
- font-size: 16px;
+ font-size: 19px;
color: #111;
- box-shadow: 0 2px 6px rgba(0,0,0,0.06) inset;
+ background: rgba(255, 255, 255, 0.5);
+ box-shadow: 0 2px 6px rgba(91, 90, 90, 0.06) inset;
}
input::placeholder{
@@ -27,21 +28,22 @@ input::placeholder{
/* style scoped (module) */
.loginButton {
display: inline-block;
- padding: 0.55rem 1rem;
- height: 55px;
- border-radius: 6px;
- background-color: #2b6cb0;
- color: #fff;
+ height: 50px;
+ width:90%;
+ border-radius: 16px;
+ margin-bottom:3%;
+ margin-top:3%;
+ background-color: rgba(255, 255, 255, 0.335);
+ color: #000000;
font-weight: 600;
border: none;
- box-shadow: 0 2px 6px rgba(43,108,176,0.15);
cursor: pointer;
transition: background-color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
font-size: 15px;
}
.loginButton:hover {
- background-color: #235a9a;
+ background-color: #54585e;
transform: translateY(-2px);
box-shadow: 0 6px 14px rgba(43,108,176,0.18);
}
@@ -51,18 +53,6 @@ input::placeholder{
box-shadow: 0 3px 8px rgba(43,108,176,0.12);
}
-.loginButton:focus {
- outline: 2px solid rgba(43,108,176,0.24);
- outline-offset: 2px;
-}
-.loginButton:active {
- transform: translateY(0);
- box-shadow: 0 3px 8px rgba(43,108,176,0.12);
-}
-.loginButton:focus {
- outline: 2px solid rgba(43,108,176,0.24);
- outline-offset: 2px;
-}
diff --git a/src/index.css b/src/index.css
index d208144..39d9264 100644
--- a/src/index.css
+++ b/src/index.css
@@ -38,8 +38,8 @@ body {
.glassCard {
- width: 240px;
- height: 360px;
+ width: 100%;
+ padding: 12px 12px 12px 12px;
background: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
diff --git a/src/pages/Login/LoginPage.module.css b/src/pages/Login/LoginPage.module.css
index b913811..fc62d28 100644
--- a/src/pages/Login/LoginPage.module.css
+++ b/src/pages/Login/LoginPage.module.css
@@ -2,7 +2,7 @@
position: relative;
z-index: 2;
display: flex;
- width: 30%;
+ width: 600px;
overflow: hidden;
max-height: 80%;
justify-content: center;