This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/site/main/output/created.en.inc

25 lines
635 B
PHP

<?
include("menu.en.inc");
$this->title = "Account creation";
$this->addStylesheet('text');
$this->startContents();
if ($args['success']) {
?>
<h1>Your Legacy Worlds account has been created!</h1>
<p>
An e-mail has been sent to you with your account's details as well as
the validation procedure that will confirm your account's creation.
</p>
<?php
} else {
?>
<h1>An error has occured!</h1>
<p>
Something went wrong in the process of creating your account. This should never have
happened, please contact our <a href='mailto:webmaster@legacyworlds.com'>staff</a> to
report this.
</p>
<?php
}
$this->endContents();
?>