12/07/23 - 21h
parent
8c7563c010
commit
484893b7e1
|
@ -2593,6 +2593,7 @@ function GestionAdministrative(props) {
|
|||
GetListeInscrit(mysession);
|
||||
GetListeEmargement(mysession);
|
||||
GetListeEvaluation(mysession);
|
||||
alert(" Les stagiaires ont été correctement importés");
|
||||
submenu_inscrit();
|
||||
} else if (String(result['status']) === String("Err_Connexion")) {
|
||||
alert('Erreur: ' + result['message']);
|
||||
|
|
|
@ -31,7 +31,7 @@ import LinkedInIcon from '@mui/icons-material/LinkedIn';
|
|||
import axios from "axios";
|
||||
|
||||
|
||||
import { RiMailCheckLine } from "react-icons/ri";
|
||||
import { RiMailCheckLine, RiPhoneLine, RiCommunityLine } from "react-icons/ri";
|
||||
|
||||
function SignUp() {
|
||||
|
||||
|
@ -452,29 +452,69 @@ function SignUp() {
|
|||
|
||||
</div>
|
||||
<div className="div_row_bis">
|
||||
{String(menucompte) === String("partner") && <FormGroup>
|
||||
{/*String(menucompte) === String("partner") && <FormGroup>
|
||||
<Label className="text_label">Raison Sociale*</Label>
|
||||
<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>
|
||||
<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">
|
||||
<InputLabel htmlFor="email" style={{"margin":"0px"}}>Email</InputLabel>
|
||||
<InputLabel htmlFor="email" style={{ "margin": "0px" }}>Email</InputLabel>
|
||||
<OutlinedInput
|
||||
id="email"
|
||||
name="email"
|
||||
type="email"
|
||||
|
||||
|
||||
label="email"
|
||||
className="ch"
|
||||
endAdornment={
|
||||
<InputAdornment position="end">
|
||||
<RiMailCheckLine />
|
||||
|
||||
|
||||
</InputAdornment>
|
||||
}
|
||||
|
||||
|
@ -483,7 +523,7 @@ function SignUp() {
|
|||
</FormControl>
|
||||
<br />
|
||||
<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
|
||||
id="new_pwd"
|
||||
name="new_pwd"
|
||||
|
@ -498,7 +538,7 @@ function SignUp() {
|
|||
aria-label="toggle password visibility"
|
||||
onClick={handleClickShowPassword_new_pwd}
|
||||
edge="end"
|
||||
|
||||
|
||||
>
|
||||
{newpawdvisible ? <Visibility /> : <VisibilityOff />}
|
||||
</IconButton>
|
||||
|
@ -538,7 +578,7 @@ function SignUp() {
|
|||
</FormControl>*/}
|
||||
|
||||
<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
|
||||
id="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
|
||||
}
|
Loading…
Reference in New Issue