Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

code.php 657B

123456789101112131415161718192021
  1. <?
  2. BIC::challenge();
  3. View::show_header('Register');
  4. ?>
  5. <div style="width: 500px;">
  6. <form class="auth_form" name="invite" method="get" action="register.php">
  7. Please enter your invite code into the box below.<br /><br />
  8. <table class="layout" cellpadding="2" cellspacing="1" border="0" align="center">
  9. <tr valign="top">
  10. <td align="right">Invite&nbsp;</td>
  11. <td align="left"><input type="text" name="invite" id="invite" class="inputtext" /></td>
  12. </tr>
  13. <tr>
  14. <td colspan="2" align="right"><input type="submit" name="submit" value="Begin!" class="submit" /></td>
  15. </tr>
  16. </table>
  17. </form>
  18. </div>
  19. <?
  20. View::show_footer();
  21. ?>