This commit is contained in:
KONE SOREL 2026-04-03 11:37:33 +00:00
parent eae3e01fb0
commit d5dc022606

View File

@ -41,25 +41,25 @@
<div class="card-body">
<div class="row g-3">
<div class="col-md-3">
<label class="form-label small fw-bold text-dark"><?= _("Code Interne") ?></label>
<label class="form-label small fw-bold text-muted"><?= _("Code Interne") ?></label>
<input class="form-control bg-light border-0 fw-bold text-primary" type="text" value="<?=$this->nettoyer($societeuser['codeSociete'])?>" readonly>
</div>
<div class="col-md-4">
<label class="form-label small fw-bold text-dark required"><?= _("Type de Structure") ?></label>
<label class="form-label small fw-bold text-muted required"><?= _("Type de Structure") ?></label>
<select class="selectpicker w-100" data-live-search="true" id="codeTypeSociete" name="codeTypeSociete" required>
<?php liste_options($typeSociete, $this->nettoyer($societeuser['typeSociete'])); ?>
</select>
</div>
<div class="col-md-5">
<label class="form-label small fw-bold text-dark required"><?= _("Nom Complet") ?></label>
<input class="form-control fw-bold text-dark" type="text" id="nomCentreGestion" name="nomCentreGestion" value="<?=$this->nettoyer($societeuser['nomSociete'])?>" required>
<label class="form-label small fw-bold text-muted required"><?= _("Nom Complet") ?></label>
<input class="form-control fw-bold text-muted" type="text" id="nomCentreGestion" name="nomCentreGestion" value="<?=$this->nettoyer($societeuser['nomSociete'])?>" required>
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-dark"><?= _("Sigle / Label") ?></label>
<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'])?>">
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-dark"><?= _("Directeur / Responsable") ?></label>
<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'])?>">
@ -71,22 +71,22 @@
<h6 class="small fw-bold text-primary text-uppercase mb-3" style="letter-spacing: 0.5px;"><?= _("Localisation du Siège") ?></h6>
<div class="row g-3">
<div class="col-md-6">
<label class="form-label small fw-bold text-dark"><i class="fas fa-map-marker-alt me-1 text-primary"></i><?= _("Siège Social") ?></label>
<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'])?>">
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-dark"><i class="fas fa-box me-1 text-primary"></i><?= _("Boite Postale") ?></label>
<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'])?>">
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-dark required"><?= _("Pays") ?></label>
<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>
<?php liste_options($pays, $this->nettoyer($societeuser['codePays'])); ?>
</select>
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-dark required"><?= _("Ville") ?></label>
<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>
<?php liste_options($villes, $this->nettoyer($societeuser['ville'])); ?>
@ -107,15 +107,15 @@
<div class="card-body">
<div class="row g-3">
<div class="col-md-6">
<label class="form-label small fw-bold text-dark"><?= _("Téléphone Fixe") ?></label>
<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'])?>">
</div>
<div class="col-md-6">
<label class="form-label small fw-bold text-dark"><?= _("Téléphone Mobile") ?></label>
<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'])?>">
</div>
<div class="col-12">
<label class="form-label small fw-bold text-dark required"><?= _("E-mail Officiel") ?></label>
<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>
@ -129,13 +129,13 @@
<div class="card-body">
<div class="row g-3">
<div class="col-md-6">
<label class="form-label small fw-bold text-dark"><?= _("Langue Système") ?></label>
<label class="form-label small fw-bold text-muted"><?= _("Langue Système") ?></label>
<select class="form-select border-2" 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-dark"><?= _("Journalisation") ?></label>
<label class="form-label small fw-bold text-muted"><?= _("Journalisation") ?></label>
<select class="form-select border-2" id="activerLogVisitePages" name="activerLogVisitePages">
<?php liste_options($visitePage, $this->nettoyer($societeuser['activerLogVisitePages']), true); ?>
</select>
@ -160,7 +160,7 @@
</div>
</div>
<div class="col-md-10">
<label class="form-label small fw-bold text-dark"><?= _("Email de Notification (Alerte Consommation)") ?></label>
<label class="form-label small fw-bold text-muted"><?= _("Email de Notification (Alerte Consommation)") ?></label>
<input class="form-control border-warning" type="email" id="emailAlertLimiteConsommation" name="emailAlertLimiteConsommation" value="<?=$this->nettoyer($societeuser['emailAlertLimiteConsommation'])?>">
</div>
</div>