3 set_include_path(get_include_path() . PATH_SEPARATOR
. '../lib');
5 include_once('aur.inc.php'); # access AUR common functions
6 include_once('acctfuncs.inc.php'); # access Account specific functions
8 set_lang(); # this sets up the visitor's language
9 check_sid(); # see if they're still logged in
11 if (isset($_COOKIE["AURSID"])) {
12 header('Location: /');
16 html_header(__('Register'));
18 echo '<div class="box">';
19 echo '<h2>' . __('Register') . '</h2>';
21 if (in_request("Action") == "NewAccount") {
22 list($success, $message) = process_account_form(
46 display_account_form("NewAccount",
66 print '<p>' . __("Use this form to create an account.") . '</p>';
67 display_account_form("NewAccount", "", "", "", "", "", "", "", "", $LANG);
72 html_footer(AURWEB_VERSION
);