32 lines
1.3 KiB
PHP
Executable File
32 lines
1.3 KiB
PHP
Executable File
<INPUT class="sr-only" TYPE="text" id="idLimite" name="idLimite" value="<?= $idLimite ?>">
|
|
<table class="table table-responsive table-condensed" style='font-size:12pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"> <?= _("Ancien Plafond");?></td>
|
|
<td>
|
|
<INPUT style='text-align:center; font-size:12pt;' class="form-control" TYPE="text"
|
|
value="<?= format_N($plafondOld) ?>" id="plafondOld" name="plafondOld" disabled>
|
|
</td>
|
|
|
|
<td width="10%" class="required" align="center"> <?= _("Nouveau Plafond");?></td>
|
|
<td>
|
|
<INPUT style='text-align:center; font-size:12pt;' class="form-control" TYPE="text" id="plafondNew" name="plafondNew"
|
|
value="0" onfocus="javascript:formatNumerique(this);" onkeyup="controle_numerique(this);" onblur="formatMonetaire(this);"
|
|
required AUTOCOMPLETE="OFF">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="required"> <?= _("Motif");?></td>
|
|
<td colspan="3">
|
|
<textarea class="form-control-sm" placeholder="<?= _("Obligatoire");?>" name="motif" id="motif" rows="5" required AUTOCOMPLETE="OFF" style="width:100%;"></textarea>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="4">
|
|
<input id="btn_enreg" name="btn_enreg" class="form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="valider_limite_adherent();" style='font-size:12pt;'>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|