55 lines
2.8 KiB
PHP
Executable File
55 lines
2.8 KiB
PHP
Executable File
<div class="card border-0 shadow-sm mb-4 border-start border-primary border-4 animate__animated animate__fadeIn">
|
|
<div class="card-header border-bottom bg-light py-3">
|
|
<h6 class="card-title mb-0 fw-bold text-primary text-uppercase small">
|
|
<i class="fas fa-plus-circle me-2"></i><?= _("Ajouter des données") ?>
|
|
</h6>
|
|
</div>
|
|
<div class="card-body p-4">
|
|
<form id="formData">
|
|
<div class="row g-4 align-items-end">
|
|
<div class="col-md-4">
|
|
<label class="form-label small fw-bold text-muted"><?= _("S/P Minimum") ?></label>
|
|
<div class="input-group">
|
|
<span class="input-group-text bg-light opacity-75">
|
|
<i class="fas fa-lock text-muted"></i>
|
|
</span>
|
|
<input class="form-control text-center border-2 border-start-0 fw-bold"
|
|
type="number" step="0.01"
|
|
id="spMin" name="spMin"
|
|
readonly value="<?= est_anglophone() ? number_format($spMin, 2) : number_format($spMin, 2, ',', ' '); ?>">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<label class="form-label small fw-bold text-muted required"><?= _("S/P Maximum") ?></label>
|
|
<div class="input-group">
|
|
<span class="input-group-text text-primary">
|
|
<i class="fas fa-chart-line"></i>
|
|
</span>
|
|
<input class="form-control text-center fw-bold border-2 border-start-0"
|
|
type="number" step="0.01"
|
|
id="spMax" name="spMax"
|
|
required autocomplete="off"
|
|
onblur="javascript:controle_spmax();">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<label class="form-label small fw-bold text-muted required"><?= _("Taux Ajustement (%)") ?></label>
|
|
<div class="input-group">
|
|
<span class="input-group-text bg-light text-info">
|
|
<i class="fas fa-percentage"></i>
|
|
</span>
|
|
<input class="form-control text-center border-2 border-start-0 fw-bold"
|
|
type="number" step="0.01"
|
|
id="tauxAjustement" name="tauxAjustement"
|
|
required autocomplete="off"
|
|
value="0.00">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|