security-logging.php

<h1>Security Logging Info</h1>
<p>When you attempt to login to this website:</p>
<ul>
<li>Your IP Address and browser's user agent are recorded along with your email.</li>
<li>A security log is created that shows this information to the owner of the account.</li>
<li>A throttling mechanism uses your information to prevent password cracking.</li>
<li>The website administrator (or anyone with access to the website database) can view your information.</li>
</ul>

<?php
if ($package->get_user()->is_logged_in()){
    echo $package->link('dashboard', 'terms');
} else {
    echo $package->links('login', 'register', 'reset.password', 'terms');
}
?>