-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
41 lines (32 loc) · 1.3 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* This file is part of isou project.
*
* Désactive la vérification phpcs sur ce fichier.
* phpcs:disable
*
* @author Université Rennes 2 - DSI <dsi-contact@univ-rennes2.fr>
* @license The Unlicense <http://unlicense.org>
*/
declare(strict_types=1);
?><!DOCTYPE html>
<html 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" />
<meta http-equiv="refresh" content="5;URL=www/" />
<title>ISOU - Problème de configuration</title>
<link rel="shortcut icon" type="image/png" href="www/themes/bootstrap3/favicon.png" />
<link href="//unpkg.com/bootstrap@3.3/dist/css/bootstrap.min.css" type="text/css" media="screen" rel="stylesheet" />
</head>
<body role="document">
<div class="container">
<header class="page-header" role="banner">
<h1 id="isou-header">ISOU</h1>
</header>
<p class="alert alert-danger"><strong>Problème de configuration détecté !</strong><br />Merci de faire pointer votre serveur web sur le répertoire <code><?php echo __DIR__;?>/www</code>.</p>
<p>Vous devriez être automatiquement redirigé vers <a href="www/">cette page</a> d'ici quelques secondes.</p>
</div>
</body>
</html>