a
This commit is contained in:
parent
564feeea5a
commit
271cff794a
|
|
@ -13,20 +13,45 @@
|
|||
$codeSociete = $_COOKIE['codeSociete'];
|
||||
}
|
||||
|
||||
$cheminLogo ="/Societes/$codeSociete/Logos/logo_societe.png";
|
||||
|
||||
$societeExiste = true;
|
||||
?>
|
||||
|
||||
<form class="login100-form validate-form" action="Connexion/connecter" method="post">
|
||||
<span class="login100-form-logo"></span>
|
||||
|
||||
<div class="login-wrapper">
|
||||
<form class="login100-form validate-form" action="Connexion/connecter" method="post">
|
||||
<?php
|
||||
if($_SESSION['lang'] == "en_US")
|
||||
{
|
||||
require('english.php');
|
||||
}else
|
||||
}
|
||||
else
|
||||
{
|
||||
require('french.php');
|
||||
}
|
||||
?>
|
||||
</form>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<style>
|
||||
/* Conteneur principal avec l'image de fond */
|
||||
.login-wrapper {
|
||||
background-image: url('<?= $cheminLogo ?>');
|
||||
background-size: auto;
|
||||
background-position: left;
|
||||
background-repeat: no-repeat;
|
||||
display: flex;
|
||||
align-items: left;
|
||||
justify-content: left;
|
||||
}
|
||||
|
||||
/* Formulaire semi-transparent par-dessus l'image */
|
||||
.login100-form {
|
||||
background-color: rgba(255, 255, 255, 0); /* blanc semi-transparent */
|
||||
/*padding: 40px;*/
|
||||
padding-top: 60px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in New Issue
Block a user