<?php

require_once "common/arsenal.php5";
if (logged_in()) header ("Location: home.php5");

drawHeader("LaterMail -- Welcome", true);

?>

<p class="title">Welcome to LaterMail</p>

LaterMail is a <b>reminder service</b>, a <b>calendar</b>, a <b>personal assistant</b>,<br>
and an entire <b>backup brain</b> for the fully wired. Or wireless.<br> Or anyone who spends
more time connected to their email than... not.
<br><br>

Read more, or <a href="account/register.php5"><b>join now</b></a>!

<br><br>

<form method="post" action="home.php5">
<table border="0" align="center" style="border: 1px solid midnightblue; background-color:white;" cellspacing="4" cellpadding="0">
<tr>
     <td align="right"><label for="username"><b>Username: </b></label></td>
     <td><input type="text" id="username" name="username" value="" accesskey="U"></td>
</tr>
<tr>
     <td align="right"><label for="password"><b>Password: </b></label></td>
     <td><input type="password" id="password" name="password" value="" accesskey="P"></td>
</tr>
<tr>
     <td colspan="2" align="center">
          <input type="submit" name="dologin" value="Login">
     </td>
</tr>
</table>
</form>

<?php

drawFooter();

?>