ldap-matter/oauth/index.php

24 lines
525 B
PHP
Raw Normal View History

2017-08-08 03:01:11 +08:00
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title>Interface de connexion LDAP</title>
2017-08-08 03:01:11 +08:00
</head>
<body>
<form method="post" action="connexion.php">
<fieldset>
<legend>Connexion</legend>
2017-08-08 03:01:11 +08:00
<p>
<label for="user">Identifiant :</label><input name="user" type="text" id="user" /><br />
<label for="password">Mot de Passe :</label><input type="password" name="password" id="password" />
2017-08-08 03:01:11 +08:00
</p>
</fieldset>
<p><input type="submit" value="Connexion" /></p>
</form>
</body>
</html>