28 lines
875 B
HTML
28 lines
875 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Entrer en M103</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="/res/style.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
<body>
|
|
<main class="login">
|
|
<h1>Authentification requise.</h1>
|
|
<p>(désolé pour les non-MP2I qui veulent faire de l'espionnage, vous vous attaquez à la mauvaise filière.)</p>
|
|
|
|
<form method="POST" action="/M103/connexion">
|
|
<div class="champ">
|
|
<label for="username">Nom d'utilisateur :</label>
|
|
<input id="username" type="text" name="httpd_username" value="" />
|
|
</div>
|
|
<div class="champ">
|
|
<label for="password">Mot de passe: </label>
|
|
<input id="password" type="password" name="httpd_password" value="" />
|
|
</div>
|
|
<input type="submit" name="login" value="Login" />
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|