Brian Lycett 3b8e94ce66
Christmas jingles (#55)
* Add account requests, email user on password update, RFC2307BIS autodetection and various bug fixes.

* Remove test.php
2020-12-24 18:24:41 +00:00

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();
?>