Blame view

site/inscrire.php 284 Bytes
f3564fdb   grouille   Ajout des fichier...
1
2
3
4
5
6
7
8
9
  <!DOCTYPE html>
  
  <html>
  <head>
  <?php include("head.php"); ?>
  	</head>
  
  	<!-- Contenu du site -->
  	<body>
011cb454   grouille   Ajout compte
10
11
12
13
14
15
16
  		<?php 
  		include("header.php");
  		if(getGroupe($_SESSION['Login'])==0)
  		{ include("formInscription.php"); }
  		else
  		{ header("Location: accueil.php"); }
  		?>
f3564fdb   grouille   Ajout des fichier...
17
  	</body>
011cb454   grouille   Ajout compte
18
  </html>