@@ -4865,7 +5116,13 @@ const Partner_Commande = (props) => {
console.log(" date_start_session = ", date_start_session);*/
if (local_date > date_end_session) {
- alert(" La date est après la fin de la session");
+ // alert(" La date est après la fin de la session");
+
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(" La date est après la fin de la session");
+ setalert_type("error");
+
return;
}
@@ -4901,7 +5158,11 @@ const Partner_Commande = (props) => {
if (local_date < date_start_session) {
- alert(" La date est avant le début de la session");
+ // alert(" La date est avant le début de la session");
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message("La date est avant le début de la session");
+ setalert_type("error");
return;
}
@@ -7056,7 +7317,7 @@ const Partner_Commande = (props) => {
- {String(order_data_edit_mode) !== "1" &&
Nom Client aa
+ {String(order_data_edit_mode) !== "1" &&
Nom Client
-
@@ -569,10 +567,6 @@ function SurveyDocument() {
-
-
-
-
);
}
diff --git a/src/components/UpdateAttendeeList.js b/src/components/UpdateAttendeeList.js
index 718332a..de982e1 100644
--- a/src/components/UpdateAttendeeList.js
+++ b/src/components/UpdateAttendeeList.js
@@ -28,6 +28,7 @@ import 'reactjs-popup/dist/index.css';
import Display_Action_And_Class from "./Display_Action_And_Class";
+import Module_Alert_Confirmation from "./Module_Alert_Confirmation";
function UpdateAttendeeList() {
@@ -136,7 +137,10 @@ function UpdateAttendeeList() {
else {
setGetall_Client_Communication_Contact_api("false");
setGetall_Client_Communication_Contact_message(res.data.message);
- alert(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
setdocument_checked("1");
}
@@ -226,7 +230,10 @@ function UpdateAttendeeList() {
else {
setGetall_TrainingParticipant_api("false");
setGetall_TrainingParticipant_message(res.data.message);
- alert(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
}
}).catch((error) => {
@@ -370,13 +377,20 @@ function UpdateAttendeeList() {
setLoading(false);
if (String(res.data.status) === String("true")) {
- alert(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("success");
+
history.push("/");
}
else {
setRecord_New_Attendee_Data_api("false");
setRecord_New_Attendee_Data_message(res.data.message);
- alert(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
}
}).catch((error) => {
@@ -388,6 +402,20 @@ function UpdateAttendeeList() {
})
}
+ const [display_alert_mysy, setdisplay_alert_mysy] = useState("");
+ const [alert_message, setalert_message] = useState("");
+ const [alert_type, setalert_type] = useState("");
+
+ function clear_alert_message() {
+ setalert_message("");
+ }
+ function clear_alert_type() {
+ setalert_type("");
+ }
+ function clear_display_alert_mysy() {
+ setdisplay_alert_mysy("");
+ }
+
return (
@@ -396,8 +424,16 @@ function UpdateAttendeeList() {
}
-
-
+ {/*** Affichage des messages d'alerte*/}
+ {display_alert_mysy && String(display_alert_mysy) === "1" &&
+
+ }
+ {/*** FIN Affichage des messages d'alerte*/}
@@ -606,11 +642,7 @@ function UpdateAttendeeList() {
-
-
-
-
-
+
);
}
diff --git a/src/components/fonctionalites_automatic_files/new_fonctionalites_2025.css b/src/components/fonctionalites_automatic_files/new_fonctionalites_2025.css
index 0a86263..68dbdd1 100644
--- a/src/components/fonctionalites_automatic_files/new_fonctionalites_2025.css
+++ b/src/components/fonctionalites_automatic_files/new_fonctionalites_2025.css
@@ -798,7 +798,7 @@
/* Auto layout */
display: flex;
flex-direction: row;
- justify-content: flex-end;
+ justify-content: center;
align-items: center;
padding: 0px;
gap: 50px;
@@ -1475,7 +1475,7 @@
/* Auto layout */
display: flex;
flex-direction: row;
- justify-content: flex-end;
+ justify-content: center;
align-items: center;
padding: 0px;
gap: 50px;
@@ -2151,10 +2151,10 @@
/* Auto layout */
display: flex;
flex-direction: row;
- justify-content: flex-end;
+ justify-content: center;
align-items: center;
padding: 0px;
- gap: 50px;
+ gap: 80px;
height: 48px;
diff --git a/src/index.css b/src/index.css
index e12c05a..a3f541d 100644
--- a/src/index.css
+++ b/src/index.css
@@ -13,6 +13,7 @@ code {
}
+
:root {
--foundationwhite: rgba(255, 255, 255, 1);
--foundation-bluelight: rgba(236, 241, 252, 1);
@@ -52,10 +53,4 @@ code {
--button-base-bold-line-height: 122%;
--button-base-bold-font-style: normal;
--bottom-bar-dark: ;
-}
-
-
-
-
-
-
+}
\ No newline at end of file
diff --git a/src/pages/NotFound.js b/src/pages/NotFound.js
index 5b28f46..9365b6d 100644
--- a/src/pages/NotFound.js
+++ b/src/pages/NotFound.js
@@ -5,6 +5,9 @@ import { Helmet } from "react-helmet";
import Footer from "./../components/Fotter";
import Header from "./../components/Header";
import Fotter_v3 from "./../components/Fotter_v3";
+import New_Navigation_2025 from "../components/New_Navigation_2025";
+import New_C_Header_2025_V2 from "../components/header_automatic_files/Header";
+import New_C_Footer_Without_Testimony_2025_V2 from "../components/footer_automatic_files/Layout_Without_Testimony";
const NotFound = () => {
@@ -25,7 +28,7 @@ const NotFound = () => {
}
return (
-
+
@@ -40,7 +43,7 @@ const NotFound = () => {
-
+
@@ -72,9 +75,7 @@ const NotFound = () => {
-
-
-
+
)
diff --git a/src/pages/automaticquotation.js b/src/pages/automaticquotation.js
index a47e4e5..88ea3c0 100644
--- a/src/pages/automaticquotation.js
+++ b/src/pages/automaticquotation.js
@@ -8,7 +8,9 @@ import Header from "./../components/Header";
import { useParams } from 'react-router-dom';
import img_loading_spin from "./../mysy_img/mysy_spin_loading.gif";
import axios from "axios";
-
+import New_Navigation_2025 from "../components/New_Navigation_2025";
+import New_C_Header_2025_V2 from "../components/header_automatic_files/Header";
+import New_C_Footer_Without_Testimony_2025_V2 from "../components/footer_automatic_files/Layout_Without_Testimony";
const Automaticquotation = () => {
@@ -124,7 +126,7 @@ const Automaticquotation = () => {
-
+
@@ -154,9 +156,7 @@ const Automaticquotation = () => {
-
-
-
+
diff --git a/src/pages/eSigne.js b/src/pages/eSigne.js
index e815ff8..9acaf22 100644
--- a/src/pages/eSigne.js
+++ b/src/pages/eSigne.js
@@ -2,16 +2,17 @@ import Link from "next/link";
import Navigation from "../components/Navigation";
import ESign from "../components/ESign";
-
+import New_Navigation_2025 from "../components/New_Navigation_2025";
+import New_C_Header_2025_V2 from "../components/header_automatic_files/Header";
+import New_C_Footer_Without_Testimony_2025_V2 from "../components/footer_automatic_files/Layout_Without_Testimony";
export default function Login() {
return (
-
+
diff --git a/src/pages/surveydocument.js b/src/pages/surveydocument.js
index 2a86b76..85d2dc1 100644
--- a/src/pages/surveydocument.js
+++ b/src/pages/surveydocument.js
@@ -1,17 +1,18 @@
import Link from "next/link";
import Navigation from "../components/Navigation";
import SurveyDocument from "../components/SurveyDocument"
-
+import New_Navigation_2025 from "../components/New_Navigation_2025";
+import New_C_Header_2025_V2 from "../components/header_automatic_files/Header";
+import New_C_Footer_Without_Testimony_2025_V2 from "../components/footer_automatic_files/Layout_Without_Testimony";
export default function Login() {
return (
);
}
diff --git a/src/pages/updateattendeelist.js b/src/pages/updateattendeelist.js
index 65fe7e7..7427c17 100644
--- a/src/pages/updateattendeelist.js
+++ b/src/pages/updateattendeelist.js
@@ -1,17 +1,19 @@
import Link from "next/link";
import Navigation from "../components/Navigation";
import UpdateAttendeeList from "../components/UpdateAttendeeList"
-
-
+import New_Navigation_2025 from "../components/New_Navigation_2025";
+import New_C_Header_2025_V2 from "../components/header_automatic_files/Header";
+import New_C_Footer_Without_Testimony_2025_V2 from "../components/footer_automatic_files/Layout_Without_Testimony";
+
export default function Login() {
return (
);
}
diff --git a/src/styles/components/_module_agenda.scss b/src/styles/components/_module_agenda.scss
index f391758..5248dd6 100644
--- a/src/styles/components/_module_agenda.scss
+++ b/src/styles/components/_module_agenda.scss
@@ -2576,6 +2576,9 @@
}
+ .remove_border_bottom{
+ border: unset;
+ }
}
diff --git a/src/styles/index.scss b/src/styles/index.scss
index 1dc1cdf..fb592fd 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -1,45 +1,54 @@
:root {
- --foundationwhite: rgba(255, 255, 255, 1);
- --foundation-bluelight: rgba(236, 241, 252, 1);
- --foundation-bluenormal: rgba(62, 110, 227, 1);
- --foundation-bluedarker: rgba(22, 39, 79, 1);
- --foundation-greennormal: rgba(10, 166, 144, 1);
- --foundation-greendarker: rgba(4, 58, 50, 1);
- --foundationblacklight-hover: rgba(220, 220, 220, 1);
- --foundationblacknormal: rgba(23, 23, 23, 1);
- --foundation-blue-greynormal: rgba(75, 81, 98, 1);
- --browser-uidark-bg: rgba(61, 61, 61, 0.94);
- --text-color600-body: rgba(113, 128, 150, 1);
- --text-color100: rgba(249, 250, 251, 1);
- --text-color400: rgba(203, 213, 224, 1);
- --desktop-hn-h2-desktop-font-family: "DM Sans", Helvetica;
- --desktop-hn-h2-desktop-font-weight: 700;
- --desktop-hn-h2-desktop-font-size: 40px;
- --desktop-hn-h2-desktop-letter-spacing: 0px;
- --desktop-hn-h2-desktop-line-height: 120.00000762939453%;
- --desktop-hn-h2-desktop-font-style: normal;
- --mobile-hn-h2-mobile-font-family: "DM Sans", Helvetica;
- --mobile-hn-h2-mobile-font-weight: 700;
- --mobile-hn-h2-mobile-font-size: 32px;
- --mobile-hn-h2-mobile-letter-spacing: 0px;
- --mobile-hn-h2-mobile-line-height: 120.00000762939453%;
- --mobile-hn-h2-mobile-font-style: normal;
- --16px-regular-font-family: "Inter", Helvetica;
- --16px-regular-font-weight: 400;
- --16px-regular-font-size: 16px;
- --16px-regular-letter-spacing: 0px;
- --16px-regular-line-height: 24px;
- --16px-regular-font-style: normal;
- --button-base-bold-font-family: "DM Sans", Helvetica;
- --button-base-bold-font-weight: 700;
- --button-base-bold-font-size: 16px;
- --button-base-bold-letter-spacing: 0px;
- --button-base-bold-line-height: 122%;
- --button-base-bold-font-style: normal;
- --bottom-bar-dark: ;
- }
-
- @import "./setting";
+ --foundationwhite: rgba(255, 255, 255, 1);
+ --foundation-bluelight: rgba(236, 241, 252, 1);
+ --foundation-bluenormal: rgba(62, 110, 227, 1);
+ --foundation-bluedarker: rgba(22, 39, 79, 1);
+ --foundation-greennormal: rgba(10, 166, 144, 1);
+ --foundation-greendarker: rgba(4, 58, 50, 1);
+ --foundationblacklight-hover: rgba(220, 220, 220, 1);
+ --foundationblacknormal: rgba(23, 23, 23, 1);
+ --foundation-blue-greynormal: rgba(75, 81, 98, 1);
+ --browser-uidark-bg: rgba(61, 61, 61, 0.94);
+ --text-color600-body: rgba(113, 128, 150, 1);
+ --text-color100: rgba(249, 250, 251, 1);
+ --text-color400: rgba(203, 213, 224, 1);
+ --desktop-hn-h2-desktop-font-family: "DM Sans", Helvetica;
+ --desktop-hn-h2-desktop-font-weight: 700;
+ --desktop-hn-h2-desktop-font-size: 40px;
+ --desktop-hn-h2-desktop-letter-spacing: 0px;
+ --desktop-hn-h2-desktop-line-height: 120.00000762939453%;
+ --desktop-hn-h2-desktop-font-style: normal;
+ --mobile-hn-h2-mobile-font-family: "DM Sans", Helvetica;
+ --mobile-hn-h2-mobile-font-weight: 700;
+ --mobile-hn-h2-mobile-font-size: 32px;
+ --mobile-hn-h2-mobile-letter-spacing: 0px;
+ --mobile-hn-h2-mobile-line-height: 120.00000762939453%;
+ --mobile-hn-h2-mobile-font-style: normal;
+ --16px-regular-font-family: "Inter", Helvetica;
+ --16px-regular-font-weight: 400;
+ --16px-regular-font-size: 16px;
+ --16px-regular-letter-spacing: 0px;
+ --16px-regular-line-height: 24px;
+ --16px-regular-font-style: normal;
+ --button-base-bold-font-family: "DM Sans", Helvetica;
+ --button-base-bold-font-weight: 700;
+ --button-base-bold-font-size: 16px;
+ --button-base-bold-letter-spacing: 0px;
+ --button-base-bold-line-height: 122%;
+ --button-base-bold-font-style: normal;
+ --bottom-bar-dark: ;
+}
+
+.react-calendar-timeline .rct-header-root {
+ background: #FFF !important;
+}
+
+.rct-sidebar-row .rct-sidebar-row-even .rct-sidebar{
+ font-size: 12px !important;
+}
+
+
+@import "./setting";
@import "./components/contact";
@import "./components/navigation";
@import "./components/footer";