Blame view

site/connecter.php 908 Bytes
f3564fdb   grouille   Ajout des fichier...
1
2
3
  <?php 

  session_start();

  require("accesBase.php") ;

a33f9ac2   root   MAJ connexion site
4
5
6
7
8
9
10
11
12
13
14
  

  if(verifPwd($_POST["id"], $_POST["pwd"]))

  {

  	$_SESSION['Login'] = $_POST['id'];

  	$_SESSION['Password'] = $_POST['pwd'];

  	$connect = true;

  }

  else

  {

  	$connect = false;

  }

f3564fdb   grouille   Ajout des fichier...
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  ?>

  

  <!DOCTYPE html>

  

  <html>

  	<head>

  		<?php include("head.php"); ?>

  	</head>

  

  	<!-- Contenu du site -->

  	<body>

  		<?php include("header.php"); ?>

  

  		<!-- Centre de la page -->

f3564fdb   grouille   Ajout des fichier...
29
  

a33f9ac2   root   MAJ connexion site
30
31
32
33
34
35
36
37
38
39
40
41
42
  		<?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 !

f3564fdb   grouille   Ajout des fichier...
43
  				</div>

f3564fdb   grouille   Ajout des fichier...
44
45
  			</div>

  		</div>

a33f9ac2   root   MAJ connexion site
46
47
48
49
50
  		<!-- <meta http-equiv="Refresh" content="5;url=accueil.php" /> -->

  		<?php

  			include("formConnexion.php");

  		}

  		?>

f3564fdb   grouille   Ajout des fichier...
51
52
  	</body>

  </html>