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,29 +452,69 @@ 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"
|
||||||
type="email"
|
type="email"
|
||||||
|
|
||||||
label="email"
|
label="email"
|
||||||
className="ch"
|
className="ch"
|
||||||
endAdornment={
|
endAdornment={
|
||||||
<InputAdornment position="end">
|
<InputAdornment position="end">
|
||||||
<RiMailCheckLine />
|
<RiMailCheckLine />
|
||||||
|
|
||||||
</InputAdornment>
|
</InputAdornment>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
@ -498,7 +538,7 @@ function SignUp() {
|
||||||
aria-label="toggle password visibility"
|
aria-label="toggle password visibility"
|
||||||
onClick={handleClickShowPassword_new_pwd}
|
onClick={handleClickShowPassword_new_pwd}
|
||||||
edge="end"
|
edge="end"
|
||||||
|
|
||||||
>
|
>
|
||||||
{newpawdvisible ? <Visibility /> : <VisibilityOff />}
|
{newpawdvisible ? <Visibility /> : <VisibilityOff />}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
@ -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"
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -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