45 lines
1.7 KiB
PHP
Executable File
45 lines
1.7 KiB
PHP
Executable File
<?php
|
|
// $this->titre = "INTER-SANTE - ". _("Changement de mot de passe");
|
|
?>
|
|
|
|
<legend>
|
|
<?= _("Changer mot de passe") ?>
|
|
</legend>
|
|
|
|
|
|
<form class="form-horizontal" action="Changermotpass/changerpass" method="post" style='font-size:10pt;'>
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="45%" ><?= _("Veuillez saisir votre ancien mot de passe") ?> </td>
|
|
<td align="center" width="5%" class="required">:</td>
|
|
<td><INPUT style='font-size:10pt;' class="form-control" TYPE="password" id="ancmdp" NAME="ancmdp" required AUTOCOMPLETE="OFF" autofocus></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td > <?= _("Veuillez saisir votre nouveau mot de passe") ?> </td>
|
|
<td align="center" class="required">:</td>
|
|
<td><INPUT style='font-size:10pt;' onBlur="controle_longeur_passe(this);" class="form-control" TYPE="password" id="nvmdp" NAME="nvmdp" required AUTOCOMPLETE="OFF" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td > <?= _("Veuillez confirmer votre nouveau mot de passe") ?> </td>
|
|
<td align="center" class="required">:</td>
|
|
<td><INPUT style='font-size:10pt;' onBlur="ChangerPass();" class="form-control" TYPE="password" id="cfnvmdp" NAME="cfnvmdp" required AUTOCOMPLETE="OFF" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td><input style='font-size:10pt;' class = "form-control btn btn-primary" type="submit" value="<?= _("Enregistrer") ?>" /></td>
|
|
<td></td>
|
|
<td><a style='font-size:10pt;' class="form-control btn btn-warning" href="Recherche/"> <?=_("Annuler") ?> </a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div class="alert alert-danger" style="height:38px; padding:5px;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|