Issue #0001636: Front-end part modification
This commit is contained in:
parent
377a7b3f68
commit
701d665fed
@ -29,7 +29,7 @@ $('a.dlg').on('click', function(e){
|
||||
pre {
|
||||
font-family: arial;
|
||||
}
|
||||
label#dlg {
|
||||
label#frm {
|
||||
clear: both;
|
||||
float: left;
|
||||
width: 20em;
|
||||
@ -37,7 +37,7 @@ label#dlg {
|
||||
text-align: right;
|
||||
font-weight: bold;
|
||||
}
|
||||
input#dlg {
|
||||
input#frm {
|
||||
width: 28em;
|
||||
}
|
||||
.brsr {
|
||||
@ -91,32 +91,32 @@ Tous les champs (*) sont obligatoires : en cas de données manquantes ou erroné
|
||||
<div>
|
||||
<form>
|
||||
<div id='stl'>
|
||||
<label id='dlg'>Votre Identifiant :</label>
|
||||
<input id='dlg' type="text" name="identifiant" value="<?=$params['identifiant']; ?>"/>
|
||||
<label id='frm'>Votre Identifiant :</label>
|
||||
<input id='frm' type="text" name="identifiant" value="<?=$params['identifiant']; ?>"/>
|
||||
</div>
|
||||
<div id='stl'>
|
||||
<label id='dlg'>Votre Adresse email* :</label>
|
||||
<input id='dlg' type="email" name="email" value="<?=$params['email']; ?>" required />
|
||||
<label id='frm'>Votre Adresse email* :</label>
|
||||
<input id='frm' type="email" name="email" value="<?=$params['email']; ?>" required />
|
||||
</div>
|
||||
<div id='stl'>
|
||||
<label id='dlg'>Votre Numéro de téléphone direct* :</label>
|
||||
<input id='dlg' type="text" name="telephone" value="<?=$params['telephone']; ?>" required/>
|
||||
<label id='frm'>Votre Numéro de téléphone direct* :</label>
|
||||
<input id='frm' type="text" name="telephone" value="<?=$params['telephone']; ?>" required/>
|
||||
</div>
|
||||
<div id='stl'>
|
||||
<label id='dlg'>Votre Nom* :</label>
|
||||
<input id='dlg' type="text" name="nom" value="<?=$params['nom']; ?>" required/>
|
||||
<label id='frm'>Votre Nom* :</label>
|
||||
<input id='frm' type="text" name="nom" value="<?=$params['nom']; ?>" required/>
|
||||
</div>
|
||||
<div id='stl'>
|
||||
<label id='dlg'>Votre Prénom* :</label>
|
||||
<input id='dlg' type="text" name="prenom" value="<?=$params['prenom']; ?>" required/>
|
||||
<label id='frm'>Votre Prénom* :</label>
|
||||
<input id='frm' type="text" name="prenom" value="<?=$params['prenom']; ?>" required/>
|
||||
</div>
|
||||
<div id='stl'>
|
||||
<label id='dlg'>Votre Fonction* :</label>
|
||||
<input id='dlg' type="text" name="fonction" value="<?=$params['fonction']; ?>" required/>
|
||||
<label id='frm'>Votre Fonction* :</label>
|
||||
<input id='frm' type="text" name="fonction" value="<?=$params['fonction']; ?>" required/>
|
||||
</div>
|
||||
<div id='stl'>
|
||||
<label id='dlg'>Raison Sociale* :</label>
|
||||
<input id='dlg' type="text" name="rsociale" value="<?=$params['rsociale']; ?>" required/>
|
||||
<label id='frm'>Raison Sociale* :</label>
|
||||
<input id='frm' type="text" name="rsociale" value="<?=$params['rsociale']; ?>" required/>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
@ -44,6 +44,9 @@ $('#dlg').dialog({ buttons: [
|
||||
else { $('.loading').css('display', 'none');}
|
||||
$.post('/user/motpasse', values, function(data) {
|
||||
$('#dlg').html(data);
|
||||
$('pre').hide();
|
||||
$('input#frm').attr("disabled", "disabled");
|
||||
$(".ui-dialog-buttonpane button:contains('Valider')").hide();
|
||||
});
|
||||
}
|
||||
}},
|
||||
|
Loading…
Reference in New Issue
Block a user