24 lines
751 B
PHP
24 lines
751 B
PHP
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>TD05 - Sessions</title>
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
</html>
|
|
<h1>TD05 - Sessions</h1>
|
|
<body>
|
|
<form action="loginProcess.php" method="POST">
|
|
<label for="username">Identifiant:</label><br>
|
|
<input type="text" id="username" name="username"><br>
|
|
<label for="password">Mot de passe:</label><br>
|
|
<input type="password" id="password" name="password"><br><br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</body>
|
|
<br>
|
|
<a href="restrictedPage.php"><h3>Page sécurisée</h3></a>
|
|
<a href="destroySession.php"><h3>Destruction session</h3></a> |