28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
<?php
|
|
?>
|
|
|
|
<legend>
|
|
<?= _("Mot de passe à usage unique") ?>
|
|
</legend>
|
|
|
|
<div class="alert alert-danger" style="padding:5px; margin-bottom:5px; text-align:center;" >
|
|
<H3><?= _("Veuillez saisir le code que vous avez reçu sur votre téléphone portable ou votre adresse e-mail!") ?></H3>
|
|
</div>
|
|
|
|
<form class="form-horizontal" action="Confirmotp/confirmerotp" method="post" style='font-size:10pt;'>
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="50%"> <INPUT style='font-size:10pt;text-align:center;' class="form-control" TYPE="text" id="otpValue" NAME="otpValue" required AUTOCOMPLETE="OFF"> </td>
|
|
<td> <input style='font-size:10pt;' class = "form-control btn btn-primary" type="submit" value="<?= _("Soumettre") ?>" /> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div class="alert alert-danger" style="padding:5px; margin-bottom:5px; text-align:center;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|