Files
PHP-LDAP/templates/login_form.html
2025-03-26 17:02:40 +01:00

21 lines
665 B
HTML

<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connexion au LDAP</title>
</head>
<body>
<form method="post" action="">
<label for="domain">Domaine :</label>
<input id="domain" name="domain" type="text" value="woodywood" required>
<br/>
<label for="user">Utilisateur :</label>
<input id="user" name="user" type="text" placeholder="Utilisateur" required>
<br/>
<label for="password">Mot de passe :</label>
<input id="password" name="password" type="password" placeholder="Mot de passe" required>
<br/>
<input type="submit" value="Envoyer"/>
</form>
</body>
</html>