Blame view

site/send.php 329 Bytes
f3564fdb   grouille   Ajout des fichier...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?php
  session_start();
  ?>
  <!DOCTYPE html>
  
  <html>
  	<head>
  		<?php include("head.php"); ?>
  	</head>
  
  	<!-- Contenu du site -->
  	<body>
  		<?php 
  		include("header.php");
  		if(isset($_SESSION['Login'], $_SESSION['Password']))
  		{
  			include("capteurs.php");
  		}
  		else
  		{
  			include("formConnexion.php");
  		}
  		?>
  	</body>
fc048c6d   jnduwamu   Restructuration d...
25
  </html>