production/Vue/Changermotpass/index.php
2025-12-01 16:12:12 +00:00

45 lines
1.8 KiB
PHP
Executable File

<?php
// $this->titre = "INTER SANTE - ". _("Changement de mot de passe");
?>
<legend>
<?= _("Changer votre 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%" class="required"><?= _("Veuillez saisir votre 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 class="required"> <?= _("Veuillez saisir votre nouveau mot de passe") ?> </td>
<td align="center">:</td>
<td><INPUT style='font-size:10pt;' class="form-control" TYPE="password" id="nvmdp" NAME="nvmdp" required AUTOCOMPLETE="OFF"></td>
</tr>
<tr>
<td class="required"> <?= _("Veuillez confirmer votre 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="Recherche/"> <?=_("Annuler") ?> </a></td> -->
<td><a style='font-size:10pt;' class="form-control btn btn-warning" href="Reconnexion/"> <?=_("Annuler") ?> </a></td>
</tr>
</tbody>
</table>
</form>
<?php if (isset($msgErreur)): ?>
<div class="alert alert-danger" style="height:30px; padding:5px;" >
<H4><?= $msgErreur ?></H4>
</div>
<?php endif; ?>