mirror of
https://github.com/wheelybird/ldap-user-manager.git
synced 2025-01-18 23:42:54 +01:00
3b8e94ce66
* Add account requests, email user on password update, RFC2307BIS autodetection and various bug fixes. * Remove test.php
18 lines
293 B
PHP
18 lines
293 B
PHP
<?php
|
|
|
|
set_include_path( __DIR__ . "/includes/");
|
|
include_once "web_functions.inc.php";
|
|
|
|
render_header();
|
|
|
|
if (isset($_GET['logged_in'])) {
|
|
?>
|
|
<div class="alert alert-success">
|
|
<p class="text-center">You're logged in. Select from the menu above.</p>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
render_footer();
|
|
?>
|