Commit 65725b130d8e5d9d3d099c40b26357789e4dfa7e
1 parent
360100a5
MAJ
Showing
1 changed file
with
26 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,26 @@ |
1 | +<?php | |
2 | +session_start(); | |
3 | +?> | |
4 | +<!DOCTYPE html> | |
5 | + | |
6 | +<html> | |
7 | + <head> | |
8 | + <?php include("head.php"); ?> | |
9 | + </head> | |
10 | + | |
11 | + <!-- Contenu du site --> | |
12 | + <body> | |
13 | + <?php | |
14 | + include("header.php"); | |
15 | + if(isset($_SESSION['Login'], $_SESSION['Password'])) | |
16 | + { | |
17 | + include("graphe.php"); | |
18 | + } | |
19 | + else | |
20 | + { | |
21 | + include("formConnexion.php"); | |
22 | + } | |
23 | + ?> | |
24 | + </body> | |
25 | +</html> | |
26 | + | ... | ... |