This repository has been archived on 2024-07-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
lwb5/scripts/site/main/output/login.en.inc

20 lines
543 B
PHP

<?php
include("menu.en.inc");
$this->addStylesheet('text');
$this->startContents();
$this->title = "Please log in";
if ($args['error']) {
?>
<h1>Invalid credentials</h1>
<p>The username or password you entered are invalid.</p>
<p>Please try typing them again.</p>
<?php
} else {
?>
<h1>Please log in</h1>
<p>The page you are trying to view requires you to be a registered LegacyWorlds player.</p>
<p>Please type in your username and password into the login form at the top right corner of this page.</p>
<?php
}
$this->endContents();
?>