webmum/include/php/pages/start.php

17 lines
387 B
PHP

<?php
if($user->isLoggedIn() === true){
redirect("private/");
}
?>
<h1>WebMUM</h1>
<p>
WebMUM is an easy to use webinterface for managing user accounts on your mailserver's MySQL user backend.<br/>
Users of your server can log in here to change their passwords.
</p>
<div class="buttons buttons-horizontal">
<a class="button" href="<?php echo url('login'); ?>">Log in</a>
</div>