newdesigngestionnaire/Vue/Ajaxtbmodifierservice/index.php
2026-03-14 08:54:36 +00:00

61 lines
3.1 KiB
PHP
Executable File

<form id="formData" class="container-fluid p-0">
<input type="hidden" id="id" name="id" value="<?= $service['id'] ?>">
<div class="card border-0 shadow-sm border-start border-4 border-primary" style="border-radius: var(--radius-md);">
<div class="card-header bg-white py-3 border-bottom">
<h6 class="mb-0 fw-bold text-uppercase text-warning small">
<i class="fas fa-edit me-2"></i><?= _("Modification des données du service") ?>
</h6>
</div>
<div class="card-body bg-light-50 p-4">
<div class="row g-4">
<div class="col-md-2">
<label class="form-label small fw-bold text-muted"><?= _("Code") ?></label>
<div class="input-group shadow-xs">
<span class="input-group-text bg-light border-2 border-end-0">
<i class="fas fa-barcode text-muted"></i>
</span>
<input type="text"
class="form-control border-2 border-start-0 majuscule fw-bold text-center"
id="codeService"
name="codeService"
value="<?= $this->nettoyer($service['codeService']); ?>"
disabled>
</div>
</div>
<div class="col-md-5">
<label class="form-label small fw-bold text-muted required"><?= _("Libellé du Service (FR)") ?></label>
<div class="input-group shadow-xs">
<span class="input-group-text bg-white border-2 border-end-0">
<i class="fas fa-concierge-bell text-muted"></i>
</span>
<input type="text"
class="form-control border-2 border-start-0 majuscule"
id="libelle"
name="libelle"
required
autocomplete="off"
value="<?= $this->nettoyer($service['libelle']); ?>">
</div>
</div>
<div class="col-md-5">
<label class="form-label small fw-bold text-muted"><?= _("Libellé du Service (EN)") ?></label>
<div class="input-group shadow-xs">
<span class="input-group-text bg-white border-2 border-end-0">
<i class="fas fa-language text-muted"></i>
</span>
<input type="text"
class="form-control border-2 border-start-0 majuscule"
id="libelleEng"
name="libelleEng"
autocomplete="off"
value="<?= $this->nettoyer($service['libelleEng']); ?>">
</div>
</div>
</div>
</div>
</div>
</form>