<?php
    $GLOBALS['highlight'] = 'home';

    include('include/parts/header.php');
?>

<div class="header">Create New Account</div>
<?php
    if ($_notice)
    {
        echo '<div class="content">';
        echo '<span class="notice_error">' . $_notice . '</span>';
        echo '</div>';
    }
?>
<div class="content">
Please enter your email address, you will receive a confirmation email which will allow you to continue the registration process.<br /><br />
<form action="?a=new" method="post" style="margin: 0px;">
<table width="100%" border="0">
<tr><td width="150" style="text-align: right;">Email Address:</td><td><input name="email" size="40" style="border: solid 2px black; margin: 0px; padding: 3px;"></td></tr>
<tr><td width="150" style="text-align: right;"></td><td><input type="submit" value="Get Confimation Email" style="border: solid 1px green; background: black; color: green;"></td></tr>
</table>
</form>
</div>

<?php
    include('include/parts/footer.php');
?>