ldap-matter/oauth/index.php

24 lines
517 B
PHP
Raw Normal View History

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