This commit is contained in:
KONE SOREL 2026-04-03 18:15:56 +00:00
parent 04a52f80bf
commit 34eec41deb

View File

@ -55,13 +55,13 @@
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-muted"><?= _("Sigle / Label") ?></label>
<input class="form-control" type="text" id="sigleSociete" name="sigleSociete" value="<?=$this->nettoyer($societeuser['sigleSociete'])?>">
<input class="form-control border-warning" type="text" id="sigleSociete" name="sigleSociete" value="<?=$this->nettoyer($societeuser['sigleSociete'])?>">
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-muted"><?= _("Directeur / Responsable") ?></label>
<div class="input-group">
<span class="input-group-text bg-light text-muted border-end-0"><i class="fas fa-user-tie"></i></span>
<input class="form-control border-start-0" type="text" id="nomResponsable" name="nomResponsable" value="<?=$this->nettoyer($societeuser['nomResponsable'])?>">
<input class="form-control border-start-0 border-warning" type="text" id="nomResponsable" name="nomResponsable" value="<?=$this->nettoyer($societeuser['nomResponsable'])?>">
</div>
</div>
</div>
@ -71,23 +71,23 @@
<div class="row g-3">
<div class="col-md-6">
<label class="form-label small fw-bold text-muted"><i class="fas fa-map-marker-alt me-1 text-primary"></i><?= _("Siège Social") ?></label>
<input class="form-control" type="text" id="adresseGeoSociete" name="adresseGeoSociete" value="<?=$this->nettoyer($societeuser['adresseGeoSociete'])?>">
<input class="form-control border-warning" type="text" id="adresseGeoSociete" name="adresseGeoSociete" value="<?=$this->nettoyer($societeuser['adresseGeoSociete'])?>">
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-muted"><i class="fas fa-box me-1 text-primary"></i><?= _("Boite Postale") ?></label>
<input class="form-control" type="text" id="adressePostSociete" name="adressePostSociete" value="<?=$this->nettoyer($societeuser['adressePostSociete'])?>">
<input class="form-control border-warning" type="text" id="adressePostSociete" name="adressePostSociete" value="<?=$this->nettoyer($societeuser['adressePostSociete'])?>">
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-muted required"><?= _("Pays") ?></label>
<select onchange="liste_villes();" class="selectpicker w-100" data-live-search="true" id="codePays" name="codePays" required>
<select onchange="liste_villes();" class="selectpicker w-100 border-warning" data-live-search="true" id="codePays" name="codePays" required>
<?php liste_options($pays, $this->nettoyer($societeuser['codePays'])); ?>
</select>
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-muted required"><?= _("Ville") ?></label>
<div id="div_ville">
<select class="selectpicker w-100" data-live-search="true" id="ville" name="ville" required>
<select class="selectpicker w-100 border-warning" data-live-search="true" id="ville" name="ville" required>
<?php liste_options($villes, $this->nettoyer($societeuser['ville'])); ?>
</select>
</div>
@ -107,17 +107,17 @@
<div class="row g-3">
<div class="col-md-6">
<label class="form-label small fw-bold text-muted"><?= _("Téléphone Fixe") ?></label>
<input class="form-control" type="text" id="telephoneSociete" name="telephoneSociete" value="<?=$this->nettoyer($societeuser['telephoneSociete'])?>">
<input class="form-control border-warning" type="text" id="telephoneSociete" name="telephoneSociete" value="<?=$this->nettoyer($societeuser['telephoneSociete'])?>">
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-muted"><?= _("Téléphone Mobile") ?></label>
<input class="form-control fw-bold" type="text" id="portable" name="portable" value="<?=$this->nettoyer($societeuser['portable'])?>">
<input class="form-control fw-bold border-warning" type="text" id="portable" name="portable" value="<?=$this->nettoyer($societeuser['portable'])?>">
</div>
<div class="col-12">
<label class="form-label small fw-bold text-muted required"><?= _("E-mail Officiel") ?></label>
<div class="input-group">
<span class="input-group-text bg-light border-end-0 text-muted"><i class="fas fa-envelope"></i></span>
<input class="form-control border-start-0" type="email" id="emailSociete" name="emailSociete" value="<?=$this->nettoyer($societeuser['emailSociete'])?>" required>
<input class="form-control border-start-0 border-warning" type="email" id="emailSociete" name="emailSociete" value="<?=$this->nettoyer($societeuser['emailSociete'])?>" required>
</div>
</div>
</div>
@ -129,13 +129,13 @@
<div class="row g-3">
<div class="col-md-6">
<label class="form-label small fw-bold text-muted"><?= _("Langue Système") ?></label>
<select class="form-select border-2" id="codeLangueUser" name="codeLangueUser">
<select class="form-select border-2 border-warning" id="codeLangueUser" name="codeLangueUser">
<?php liste_options($langue, $codeLangueSociete, true); ?>
</select>
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-muted"><?= _("Journalisation") ?></label>
<select class="form-select border-2" id="activerLogVisitePages" name="activerLogVisitePages">
<select class="form-select border-2 border-warning" id="activerLogVisitePages" name="activerLogVisitePages">
<?php liste_options($visitePage, $this->nettoyer($societeuser['activerLogVisitePages']), true); ?>
</select>
</div>
@ -181,11 +181,11 @@
<label class="form-label small fw-bold text-primary mb-2">
<i class="fas <?= $e['icon'] ?> me-2 opacity-50"></i><?= _($e['label']) ?>
</label>
<input class="form-control form-control-sm mb-2" type="email" id="<?= $e['id'] ?>" name="<?= $e['id'] ?>" value="<?=$this->nettoyer($societeuser[$e['id']])?>" placeholder="Email...">
<input class="form-control form-control-sm mb-2 border-warning" type="email" id="<?= $e['id'] ?>" name="<?= $e['id'] ?>" value="<?=$this->nettoyer($societeuser[$e['id']])?>" placeholder="Email...">
<?php if($e['sms']): ?>
<div class="input-group input-group-sm">
<span class="input-group-text bg-light text-muted fw-bold" style="font-size: 0.6rem;">SMS</span>
<input class="form-control" type="text" id="<?= $e['sms'] ?>" name="<?= $e['sms'] ?>" value="<?=$this->nettoyer($societeuser[$e['sms']])?>">
<input class="form-control border-warning" type="text" id="<?= $e['sms'] ?>" name="<?= $e['sms'] ?>" value="<?=$this->nettoyer($societeuser[$e['sms']])?>">
</div>
<?php endif; ?>
</div>