44 lines
1.8 KiB
PHP
44 lines
1.8 KiB
PHP
<?php $this->titre = "INTER-SANTE - "._("Paramètres changement de mot de passe") ?>
|
|
|
|
<form class="form-horizontal" action="Paramreinitmotpass/changerpass" method="post" style='font-size:10pt;'>
|
|
<fieldset>
|
|
|
|
<legend> <?= _("Mot de pass à utiliser en cas de ré-initialisation : 6 caractères minimum exigés") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="45%"><?= _("Veuillez saisir ancien mot de passe") ?> </td>
|
|
<td align="center" width="5%">:</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 nouveau mot de passe") ?> </td>
|
|
<td align="center">:</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 nouveau mot de passe") ?> </td>
|
|
<td align="center">:</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="Parametresgeneraux/"> <?=_("Annuler") ?> </a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</fieldset>
|
|
</form>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div class="alert alert-danger" style="height:38px; padding:5px;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|