12/07/23 - 21h
parent
8c7563c010
commit
484893b7e1
|
@ -2593,6 +2593,7 @@ function GestionAdministrative(props) {
|
||||||
GetListeInscrit(mysession);
|
GetListeInscrit(mysession);
|
||||||
GetListeEmargement(mysession);
|
GetListeEmargement(mysession);
|
||||||
GetListeEvaluation(mysession);
|
GetListeEvaluation(mysession);
|
||||||
|
alert(" Les stagiaires ont été correctement importés");
|
||||||
submenu_inscrit();
|
submenu_inscrit();
|
||||||
} else if (String(result['status']) === String("Err_Connexion")) {
|
} else if (String(result['status']) === String("Err_Connexion")) {
|
||||||
alert('Erreur: ' + result['message']);
|
alert('Erreur: ' + result['message']);
|
||||||
|
|
|
@ -31,7 +31,7 @@ import LinkedInIcon from '@mui/icons-material/LinkedIn';
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
|
|
||||||
|
|
||||||
import { RiMailCheckLine } from "react-icons/ri";
|
import { RiMailCheckLine, RiPhoneLine, RiCommunityLine } from "react-icons/ri";
|
||||||
|
|
||||||
function SignUp() {
|
function SignUp() {
|
||||||
|
|
||||||
|
@ -452,18 +452,58 @@ function SignUp() {
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div className="div_row_bis">
|
<div className="div_row_bis">
|
||||||
{String(menucompte) === String("partner") && <FormGroup>
|
{/*String(menucompte) === String("partner") && <FormGroup>
|
||||||
<Label className="text_label">Raison Sociale*</Label>
|
<Label className="text_label">Raison Sociale*</Label>
|
||||||
<Input type="text" placeholder="" name="raison_sociale" />
|
<Input type="text" placeholder="" name="raison_sociale" />
|
||||||
</FormGroup>}
|
</FormGroup>*/}
|
||||||
|
|
||||||
{String(menucompte) === String("partner") && <FormGroup>
|
{String(menucompte) === String("partner") && <FormControl sx={{ m: 1, }} variant="outlined" size="small" className="texte_area_passwd">
|
||||||
|
<InputLabel htmlFor="raison_sociale" style={{ "margin": "0px" }}>Raison Sociale*</InputLabel>
|
||||||
|
<OutlinedInput
|
||||||
|
id="raison_sociale"
|
||||||
|
name="raison_sociale"
|
||||||
|
type="text"
|
||||||
|
|
||||||
|
label="Raison Sociale*"
|
||||||
|
className="ch"
|
||||||
|
endAdornment={
|
||||||
|
<InputAdornment position="end">
|
||||||
|
<RiCommunityLine />
|
||||||
|
|
||||||
|
</InputAdornment>
|
||||||
|
}
|
||||||
|
|
||||||
|
/>
|
||||||
|
|
||||||
|
</FormControl>}
|
||||||
|
|
||||||
|
{/*String(menucompte) === String("partner") && <FormGroup>
|
||||||
<Label className="text_label">Telephone*</Label>
|
<Label className="text_label">Telephone*</Label>
|
||||||
<Input type="text" placeholder="" name="telephone" />
|
<Input type="text" placeholder="" name="telephone" />
|
||||||
</FormGroup>}
|
</FormGroup>*/}
|
||||||
|
|
||||||
|
{String(menucompte) === String("partner") && <FormControl sx={{ m: 1, }} variant="outlined" size="small" className="texte_area_passwd">
|
||||||
|
<InputLabel htmlFor="raison_sociale" style={{ "margin": "0px" }}>Telephone*</InputLabel>
|
||||||
|
<OutlinedInput
|
||||||
|
id="telephone"
|
||||||
|
name="telephone"
|
||||||
|
type="text"
|
||||||
|
|
||||||
|
label="Telephone*"
|
||||||
|
className="ch"
|
||||||
|
endAdornment={
|
||||||
|
<InputAdornment position="end">
|
||||||
|
<RiPhoneLine />
|
||||||
|
|
||||||
|
</InputAdornment>
|
||||||
|
}
|
||||||
|
|
||||||
|
/>
|
||||||
|
|
||||||
|
</FormControl>}
|
||||||
|
|
||||||
<FormControl sx={{ m: 1, }} variant="outlined" size="small" className="texte_area_passwd">
|
<FormControl sx={{ m: 1, }} variant="outlined" size="small" className="texte_area_passwd">
|
||||||
<InputLabel htmlFor="email" style={{"margin":"0px"}}>Email</InputLabel>
|
<InputLabel htmlFor="email" style={{ "margin": "0px" }}>Email</InputLabel>
|
||||||
<OutlinedInput
|
<OutlinedInput
|
||||||
id="email"
|
id="email"
|
||||||
name="email"
|
name="email"
|
||||||
|
@ -483,7 +523,7 @@ function SignUp() {
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<br />
|
<br />
|
||||||
<FormControl sx={{ m: 1, }} variant="outlined" size="small" className="texte_area_passwd">
|
<FormControl sx={{ m: 1, }} variant="outlined" size="small" className="texte_area_passwd">
|
||||||
<InputLabel htmlFor="new_pwd" style={{"margin":"0px"}}>Mot de passe</InputLabel>
|
<InputLabel htmlFor="new_pwd" style={{ "margin": "0px" }}>Mot de passe</InputLabel>
|
||||||
<OutlinedInput
|
<OutlinedInput
|
||||||
id="new_pwd"
|
id="new_pwd"
|
||||||
name="new_pwd"
|
name="new_pwd"
|
||||||
|
@ -538,7 +578,7 @@ function SignUp() {
|
||||||
</FormControl>*/}
|
</FormControl>*/}
|
||||||
|
|
||||||
<FormControl sx={{ m: 1, }} variant="outlined" size="small" className="texte_area_passwd">
|
<FormControl sx={{ m: 1, }} variant="outlined" size="small" className="texte_area_passwd">
|
||||||
<InputLabel htmlFor="new_pwd_conf" style={{"margin":"0px"}}>Confirmer mot de passe</InputLabel>
|
<InputLabel htmlFor="new_pwd_conf" style={{ "margin": "0px" }}>Confirmer mot de passe</InputLabel>
|
||||||
<OutlinedInput
|
<OutlinedInput
|
||||||
id="new_pwd_conf"
|
id="new_pwd_conf"
|
||||||
name="new_pwd_conf"
|
name="new_pwd_conf"
|
||||||
|
|
|
@ -158,12 +158,12 @@
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row_gauche_bis{
|
.row_gauche_bis {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row_droite_bis{
|
.row_droite_bis {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
float: left;
|
float: left;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -331,12 +331,12 @@
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row_gauche_bis{
|
.row_gauche_bis {
|
||||||
width: 70%;
|
width: 70%;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row_droite_bis{
|
.row_droite_bis {
|
||||||
width: 28%;
|
width: 28%;
|
||||||
float: right;
|
float: right;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -502,12 +502,12 @@
|
||||||
height: 1rem;
|
height: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row_gauche_bis{
|
.row_gauche_bis {
|
||||||
width: 70%;
|
width: 70%;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row_droite_bis{
|
.row_droite_bis {
|
||||||
width: 28%;
|
width: 28%;
|
||||||
float: right;
|
float: right;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -674,32 +674,44 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.row_gauche_bis{
|
.row_gauche_bis {
|
||||||
width: 70%;
|
width: 70%;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row_droite_bis{
|
.row_droite_bis {
|
||||||
width: 28%;
|
width: 28%;
|
||||||
float: right;
|
float: right;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.css-9ddj71-MuiInputBase-root-MuiOutlinedInput-root{
|
|
||||||
|
.css-9ddj71-MuiInputBase-root-MuiOutlinedInput-root {
|
||||||
padding-left: 10px !important;
|
padding-left: 10px !important;
|
||||||
padding-right: 10px !important;
|
padding-right: 10px !important;
|
||||||
}
|
}
|
||||||
.css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root{
|
|
||||||
|
.css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root {
|
||||||
height: 3rem !important;
|
height: 3rem !important;
|
||||||
margin-bottom: 1rem !important;
|
margin-bottom: 1rem !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.css-1v4ccyo {
|
||||||
|
height: 4rem !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-1ptx2yq-MuiInputBase-root-MuiInput-root{
|
.css-1bn53lx {
|
||||||
|
height: 4rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.css-1ptx2yq-MuiInputBase-root-MuiInput-root {
|
||||||
font-size: small !important;
|
font-size: small !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.carte_cle_pass{
|
.carte_cle_pass {
|
||||||
margin: 0px !important;
|
margin: 0px !important;
|
||||||
margin-top: 10px !important;
|
margin-top: 10px !important;
|
||||||
}
|
}
|
|
@ -2342,5 +2342,14 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.css-slyssw {
|
||||||
|
margin-right: 10px !important;
|
||||||
|
padding: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.css-vubbuv{
|
||||||
|
font-size: medium !important;
|
||||||
|
}
|
||||||
|
|
||||||
// end media
|
// end media
|
||||||
}
|
}
|
Loading…
Reference in New Issue