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.
32 lines
784 B
32 lines
784 B
<?php
|
|
if (isset($_POST['submit'])) {
|
|
if (isset($_POST['username']) AND isset($_POST[username])) {
|
|
$username = htmlspecialchars($_POST['username'])
|
|
$password = htmlspecialchars($_POST['password'])
|
|
|
|
if ($password == "NSI") {
|
|
setcookie("logged", $username, 120)
|
|
header('location: google.fr')
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
<!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>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|