a
This commit is contained in:
parent
f2eab125e3
commit
b0e47ecb0c
71
Vue/Ajaxconnexioncookie/english copy.php
Executable file
71
Vue/Ajaxconnexioncookie/english copy.php
Executable file
|
|
@ -0,0 +1,71 @@
|
||||||
|
<?php
|
||||||
|
$maintenance = $societeusersaas['maintenance'];
|
||||||
|
if($maintenance=='1')
|
||||||
|
{
|
||||||
|
$msgErreur = 'Site under maintenance, please log back in later!';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<span class="login100-form-title" style="font-family: Play-Bold; color:#e5e5e5; margin-top: 12px; margin-bottom:10px;">
|
||||||
|
Guarantor Portal
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<?php if (isset($msgErreur) and $msgErreur>" "): ?>
|
||||||
|
<div class="text-center p-t-10">
|
||||||
|
<h4 class="txt3">
|
||||||
|
<div class="col-12 alert alert-danger">
|
||||||
|
<?= $msgErreur ?>
|
||||||
|
</div>
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
<?php else: ?>
|
||||||
|
<div class="text-center p-t-10" id="div_msgErreur">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if($maintenance!='1'): ?>
|
||||||
|
<div class="wrap-input100" style="width: 100%; max-width: 800px; margin: 0 auto; text-align: center;">
|
||||||
|
<label for="langue" style="display: block; margin-bottom: 8px; font-size: 16px; font-weight: 500; color: #c8234a;">🌍 Choose a language </label>
|
||||||
|
<select id="langue" name="langue"
|
||||||
|
style="width: 37%; max-width: 800px; text-align:center; padding: 12px 16px; border-radius: 6px;
|
||||||
|
border: 2px solid #c8234a; font-size: 16px; background-color: #ffffff; color: #c8234a;
|
||||||
|
margin: 0 auto; box-sizing: border-box;"
|
||||||
|
required autocomplete="off" onchange="changer_langue_connexion()">
|
||||||
|
<?php liste_options($langues, $_SESSION['lang'], true); ?>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="wrap-input100">
|
||||||
|
<div class="wrap-input100 validate-input" data-validate="Enter Entity">
|
||||||
|
<label for="codeSociete">Entity</label>
|
||||||
|
<input class="input100" type="text" name="codeSociete" id="codeSociete" value="<?= $codeSociete ?>"
|
||||||
|
placeholder="Entity" style="text-align:center;" required AUTOCOMPLETE="off"
|
||||||
|
onChange="javascript:changer_entite_portail();" >
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="div_login_portail">
|
||||||
|
<div class="wrap-input100 validate-input" data-validate="Enter username">
|
||||||
|
<label for="login">login</label>
|
||||||
|
<input class="input100" type="text" name="login" id="login" value="<?= $codeUtilisateur ?>" placeholder="login" style="text-align:center;" required AUTOCOMPLETE="off">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="wrap-input100 validate-input" data-validate="Enter password">
|
||||||
|
<label for="mdp">Password</label>
|
||||||
|
<input class="input100" type="password" name="mdp" id="mdp" placeholder="Password" style="text-align:center;" required AUTOCOMPLETE="off">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="container-login100-form-btn">
|
||||||
|
<button name="btn_connexion" id="btn_connexion" class="btn login-btn">
|
||||||
|
Login
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
All rights reserved <a href="https://www.ebene.info/">© EBENE SOLUTIONS INFORMATIQUES</a>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
@ -25,26 +25,22 @@
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php if($maintenance!='1'): ?>
|
<?php if($maintenance!='1'): ?>
|
||||||
<div class="wrap-input100" style="width: 100%; max-width: 800px; margin: 0 auto; text-align: center;">
|
<div class="wrap-input100" style="width: 100%; max-width: 800px; margin: 0 auto; text-align: center;">
|
||||||
<label for="langue" style="display: block; margin-bottom: 8px; font-size: 16px; font-weight: 500; color: #c8234a;">🌍 Choose a language </label>
|
<label for="langue" style="display: block; margin-bottom: 8px; font-size: 16px; font-weight: 500; color: #c8234a;">🌍 Choose a language </label>
|
||||||
<select id="langue" name="langue"
|
<select id="langue" name="langue"
|
||||||
style="width: 37%; max-width: 800px; text-align:center; padding: 12px 16px; border-radius: 6px;
|
style="width: 37%; max-width: 800px; text-align:center; padding: 12px 16px; border-radius: 6px;
|
||||||
border: 2px solid #c8234a; font-size: 16px; background-color: #ffffff; color: #c8234a;
|
border: 2px solid #c8234a; font-size: 16px; background-color: #ffffff; color: #c8234a;
|
||||||
margin: 0 auto; box-sizing: border-box;"
|
margin: 0 auto; box-sizing: border-box;"
|
||||||
required autocomplete="off" onchange="changer_langue_connexion()">
|
required autocomplete="off" onchange="changer_langue_connexion()">
|
||||||
<?php liste_options($langues, $_SESSION['lang'], true); ?>
|
<?php liste_options($langues, $_SESSION['lang'], true); ?>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="wrap-input100 validate-input" data-validate="Enter Entity">
|
||||||
|
<label for="codeSociete">Entity</label>
|
||||||
<div class="wrap-input100">
|
<input class="input100" type="text" name="codeSociete" id="codeSociete" value="<?= $codeSociete ?>"
|
||||||
<div class="wrap-input100 validate-input" data-validate="Enter Entity">
|
placeholder="Entity" style="text-align:center;" required AUTOCOMPLETE="off"
|
||||||
<label for="codeSociete">Entity</label>
|
onChange="javascript:changer_entite_portail();" >
|
||||||
<input class="input100" type="text" name="codeSociete" id="codeSociete" value="<?= $codeSociete ?>"
|
|
||||||
placeholder="Entity" style="text-align:center;" required AUTOCOMPLETE="off"
|
|
||||||
onChange="javascript:changer_entite_portail();" >
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="div_login_portail">
|
<div id="div_login_portail">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user