-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathIndex.php
59 lines (58 loc) · 1.88 KB
/
Index.php
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
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/png" href="ma.radees.radees.png" />
<title>Connexion</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><!--Pour que le rendu et le zoom
<!- CSS -->
<link rel="stylesheet" type="text/css" href="bootstrap-4.3.1-dist/css/bootstrap.min.css">
</head>
<body>
<center><br>
<header class="geapp-header-bar center-block">
<img class="logo" src="radees-logo.png"/>
</header><br><br>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3">
<table class="table table-bordered">
<thead>
<tr class="table-success">
<th scope="col"><center>Connectez Vous</center></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">
<div class="container">
<div class="panel-body">
<form method="POST" action="verifierpass.php">
<input type="text" class="form-control" name="mat" placeholder="Matricule"> <br><br>
<input type="password" class="form-control" name="pass" placeholder="Mot De Passe"><br><br>
<?php
session_start();
if(isset($_GET['incorrect'])){
if ($_GET['incorrect']==1) { echo'<div class="alert alert-danger" role="alert">informations incorrectes</div>';
}
}
?>
<div class="checkbox">
<label>
<input type="checkbox" name="remember" checked> Connexion automatique
</label>
</div>
<button type="submit" class="btn btn-lg btn-success btn-block">Se connecter</button>
</form>
</div>
</div>
</th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</center>
</body>
</html>