This commit is contained in:
KONE SOREL 2026-04-10 12:47:20 +00:00
parent a874926dd9
commit 088bf25335
2 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
<div class="card border-0 shadow-sm mb-4 border-start border-primary border-4 animate__animated animate__fadeIn">
<div class="card-header bg-white py-3">
<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>
@ -8,17 +8,17 @@
<form id="formData">
<div class="row g-3 mb-3">
<div class="col-md-4">
<label class="form-label small fw-bold text-muted text-uppercase required"><?= _("Type Contrat") ?></label>
<label class="form-label small fw-bold text-muted required"><?= _("Type Contrat") ?></label>
<div class="input-group">
<span class="input-group-text bg-light"><i class="fas fa-file-contract text-primary"></i></span>
<select class="form-select selectpicker" id="codeTypeContrat" name="codeTypeContrat" required autocomplete="off" onchange="javascript:affiche_prime_min();">
<select class="form-select" id="codeTypeContrat" name="codeTypeContrat" required autocomplete="off" onchange="javascript:affiche_prime_min();">
<?php liste_options($typecontrat, "", false); ?>
</select>
</div>
</div>
<div class="col-md-4">
<label class="form-label small fw-bold text-muted text-uppercase"><?= _("Prime Mini") ?></label>
<label class="form-label small fw-bold text-muted"><?= _("Prime Mini") ?></label>
<div id="div_prime_mini">
<div class="input-group">
<span class="input-group-text bg-light"><i class="fas fa-arrow-down text-muted"></i></span>
@ -28,7 +28,7 @@
</div>
<div class="col-md-4">
<label class="form-label small fw-bold text-muted text-uppercase required"><?= _("Forfait") ?></label>
<label class="form-label small fw-bold text-muted required"><?= _("Forfait") ?></label>
<div class="input-group">
<span class="input-group-text bg-light text-success"><i class="fas fa-money-bill-wave"></i></span>
<input class="form-control text-center fw-bold" type="text" value="0" id="accessoireForfait" name="accessoireForfait" onkeyup="controle_numerique(this);" onblur="formatMonetaire(this);">
@ -38,17 +38,17 @@
<div class="row g-3">
<div class="col-md-4">
<label class="form-label small fw-bold text-muted text-uppercase required"><?= _("Application") ?></label>
<label class="form-label small fw-bold text-muted required"><?= _("Application") ?></label>
<div class="input-group">
<span class="input-group-text bg-light"><i class="fas fa-cog text-primary"></i></span>
<select class="form-select selectpicker" id="codeApplication" name="codeApplication" required autocomplete="off" onchange="javascript:affiche_prime_min();">
<select class="form-select" id="codeApplication" name="codeApplication" required autocomplete="off" onchange="javascript:affiche_prime_min();">
<?php liste_options($application, "", false); ?>
</select>
</div>
</div>
<div class="col-md-4">
<label class="form-label small fw-bold text-muted text-uppercase required"><?= _("Prime Maxi") ?></label>
<label class="form-label small fw-bold text-muted required"><?= _("Prime Maxi") ?></label>
<div class="input-group">
<span class="input-group-text bg-light"><i class="fas fa-arrow-up text-primary"></i></span>
<input class="form-control text-center fw-bold text-primary" type="text" value="0" id="primeMax" name="primeMax" required autocomplete="off" onkeyup="controle_numerique(this);" onblur="formatMonetaire(this);" onchange="controle_primeMax();">
@ -56,7 +56,7 @@
</div>
<div class="col-md-4">
<label class="form-label small fw-bold text-muted text-uppercase"><?= _("Taux (%)") ?></label>
<label class="form-label small fw-bold text-muted"><?= _("Taux (%)") ?></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 fw-bold" type="number" min="0" value="0" step="0.01" id="tauxAccessoire" name="tauxAccessoire" onBlur="controle_numerique(this);">

View File

@ -1,5 +1,5 @@
<div class="card border-0 shadow mb-4 border-start border-warning border-4 animate__animated animate__fadeIn">
<div class="card-header bg-white py-3 d-flex align-items-center justify-content-between">
<div class="card-header border-bottom bg-light py-3 d-flex align-items-center justify-content-between">
<h6 class="card-title mb-0 fw-bold text-warning text-uppercase small">
<i class="fas fa-edit me-2"></i><?= _("Modification des données") ?>
</h6>