64 lines
2.6 KiB
PHP
Executable File
64 lines
2.6 KiB
PHP
Executable File
<?php
|
|
defined('APP_VERSION') || define('APP_VERSION', date('YmdHi'));
|
|
?>
|
|
<!doctype html>
|
|
<html lang="<?= ($_SESSION['lang'] == "en_US") ? 'en' : 'fr' ?>">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<base href="<?= $racineWeb ?>">
|
|
<title><?= $titre ?></title>
|
|
|
|
<link rel="icon" href="Bootstrap_new/images/favicon.ico"/>
|
|
<link href="Bootstrap_new/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
|
|
|
|
<link href="Bootstrap_new/css/style-portail.css?ver=<?= APP_VERSION ?>" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="auth-wrapper">
|
|
<div class="auth-visual d-none d-lg-block">
|
|
<div class="slide-container">
|
|
<div class="slides">
|
|
<img src="Bootstrap_new/login/images/bg-01.jpg" class="active">
|
|
<img src="Bootstrap_new/login/images/bg-02.jpg">
|
|
<img src="Bootstrap_new/login/images/bg-03.jpg">
|
|
<img src="Bootstrap_new/login/images/bg-04.jpg">
|
|
</div>
|
|
<div class="buttons">
|
|
<span class="next"><i class="fas fa-chevron-right"></i></span>
|
|
<span class="prev"><i class="fas fa-chevron-left"></i></span>
|
|
</div>
|
|
<div class="dotsContainer">
|
|
<div class="dot active" attr='0'></div>
|
|
<div class="dot" attr='1'></div>
|
|
<div class="dot" attr='2'></div>
|
|
<div class="dot" attr='3'></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="auth-content">
|
|
<div class="auth-card">
|
|
<div class="auth-header text-center">
|
|
<img src="Bootstrap_new/images/logo_inter_sante.png" alt="Logo" class="auth-logo">
|
|
</div>
|
|
|
|
<div id="div_contenu_portail">
|
|
<?= $contenu ?>
|
|
</div>
|
|
|
|
<footer class="auth-footer text-center">
|
|
<p>© <?= date('Y') ?> <strong>INTER SANTE</strong>. <?= _("Tous droits réservés.") ?></p>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="Bootstrap_new/js/jquery.min.js"></script>
|
|
<script src="Bootstrap_new/js/bootstrap.bundle.min.js"></script>
|
|
<script src="Bootstrap_new/js/fonctions-portail.js?ver=<?= APP_VERSION ?>"></script>
|
|
</body>
|
|
</html>
|