You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
921 B

3 years ago
<?php
if (isset($_POST['submit'])) {
if (isset($_POST['username']) AND isset($_POST[username])) {
3 years ago
$username = htmlspecialchars($_POST['username']);
$password = htmlspecialchars($_POST['password']);
3 years ago
if ($password == "NSI") {
3 years ago
$message = "redirection en cours";
setcookie("logged", $username, 120);
header('location: machine.html');
} else {
$message ="accès refusé";
3 years ago
}
}
}
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<title>M A C H I N E</title>
<meta charset="utf-8">
<link href="stylepagecss/style.css" rel="stylesheet">
<link rel="icon" type="image/jpg" sizes="16x16" href="icon.jpg">
</head>
<body>
<div>
<form method="post" action="">
<input type="text" name="username">
<input type="text" name="password">
<input type="submit" value="Valider" name="submit">
</form>
3 years ago
<?php if (isset($message)) {echo $message;} ?>
3 years ago
</div>
</body>
</html>