65725b13
Guillaume
MAJ
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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']))
{
|
f4782e65
Guillaume
MAJ Graphe
|
17
18
19
20
21
22
23
24
25
26
|
?>
<div class="row">
<div class="col-8 col-md-8 offset-md-2 offset-2">
<br/>
<h1 style="margin-bottom:20px; margin-top:30px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fa fa-bars"></i> Graphe du capteur</h1>
<br/>
<img src="graphe.php" alt="graphe">
</div>
</div>
<?php
|