44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<!doctype html>
|
|
<html style="height: 100%;" lang="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 ?>" >
|
|
|
|
<link rel="icon" href="Bootstrap/images/favicon.png"/>
|
|
|
|
<link href="Bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="Bootstrap/css/simple-sidebar.css" rel="stylesheet">
|
|
<link href="Bootstrap/css/jquery-ui.css" rel="stylesheet">
|
|
<link href="Bootstrap/css/style.css" rel="stylesheet">
|
|
|
|
<title><?= $titre ?></title>
|
|
|
|
<script type="text/javascript">
|
|
if (document.addEventListener) {
|
|
document.addEventListener('contextmenu', function (e) {
|
|
e.preventDefault();
|
|
}, false);
|
|
} else {
|
|
document.attachEvent('oncontextmenu', function () {
|
|
window.event.returnValue = false;
|
|
});
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body style="background-color: rgba(0,0,255,0.2);padding: 10%;">
|
|
|
|
<input class="sr-only" type="text" id="racineWeb" name="racineWeb" value="<?= $racineWeb ?>">
|
|
|
|
<div class="container" style="width : 500px;vertical-align: middle;background-color: rgb(126, 191, 223);margin: auto;">
|
|
<div id="contenu">
|
|
<?= $contenu ?>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|