45 lines
1.9 KiB
PHP
Executable File
45 lines
1.9 KiB
PHP
Executable File
<?php
|
|
$maintenance = $societeusersaas['maintenance'];
|
|
if($maintenance == '1') { $msgErreur = 'Site en maintenance, veuillez vous reconnecter plus tard!'; }
|
|
?>
|
|
|
|
<h2 class="portal-title text-center mb-4">Portail Gestionnaire</h2>
|
|
|
|
<?php if (isset($msgErreur) && $msgErreur > " "): ?>
|
|
<div class="alert alert-danger border-0 small text-center mb-3"><?= $msgErreur ?></div>
|
|
<?php endif; ?>
|
|
|
|
<?php if($maintenance != '1'): ?>
|
|
<div class="mb-3">
|
|
<label class="lbl-saas">Langue</label>
|
|
<select class="form-select select-dark" id="langue" name="langue" onchange="changer_langue_connexion();">
|
|
<?php liste_options($langues, $_SESSION['lang'], true); ?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label class="lbl-saas">Entité</label>
|
|
<input class="form-control input-dark" type="text" name="codeSociete" id="codeSociete" value="<?= $codeSociete ?>" required onchange="changer_entite_portail();">
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label class="lbl-saas">Identifiant</label>
|
|
<input class="form-control input-dark" type="text" name="login" id="login" value="<?= $codeUtilisateur ?>" required>
|
|
</div>
|
|
|
|
<div class="mb-4">
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<label class="lbl-saas">Mot de passe</label>
|
|
<a href="javascript:motdepasse_oublie();" class="forgot-link">Mot de passe oublié ?</a>
|
|
</div>
|
|
<input class="form-control input-dark" type="password" name="mdp" id="mdp" required>
|
|
</div>
|
|
|
|
<button name="btn_connexion" id="btn_connexion" class="btn btn-login-saas w-100 fw-bold py-3 text-uppercase">
|
|
Connexion
|
|
</button>
|
|
|
|
<footer class="portal-footer text-center mt-5">
|
|
<p>Tous droits réservés © <strong>EBENE SOLUTIONS INFORMATIQUES</strong></p>
|
|
</footer>
|
|
<?php endif; ?>
|