-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnectadmin.php
More file actions
17 lines (10 loc) · 977 Bytes
/
connectadmin.php
File metadata and controls
17 lines (10 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
include_once('bd/config.php');
$error= "le nom d'utilisateur ou le mot de passe est incorrect";
if (isset($_POST['login'])) {
$username= $_POST['username'];
$matricule=$_POST['matricule'];
echo "<h3 style=color:green;text-align:center;font: size 100px;font-weight: bold;>connexion en cours...</h3>";
header('location:./admin.php');
}
?>