connecter.php
908 Bytes
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
42
43
44
45
46
47
48
49
50
51
52
<?php
session_start();
require("accesBase.php") ;
if(verifPwd($_POST["id"], $_POST["pwd"]))
{
$_SESSION['Login'] = $_POST['id'];
$_SESSION['Password'] = $_POST['pwd'];
$connect = true;
}
else
{
$connect = false;
}
?>
<!DOCTYPE html>
<html>
<head>
<?php include("head.php"); ?>
</head>
<!-- Contenu du site -->
<body>
<?php include("header.php"); ?>
<!-- Centre de la page -->
<?php
if($connect)
{
?><meta http-equiv="Refresh" content="0;url=accueil.php" /><?php
}
else
{
?>
<div class="row">
<div class="col-4 col-md-4 offset-4 offset-md-4">
<br/>
<div class="alert alert-danger" role="alert">
Identifiant ou mot de passe incorrect !
</div>
</div>
</div>
<!-- <meta http-equiv="Refresh" content="5;url=accueil.php" /> -->
<?php
include("formConnexion.php");
}
?>
</body>
</html>