2002-11-11 10:26:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once("util.inc");
|
|
|
|
|
|
|
|
page_head("Create account");
|
|
|
|
|
2003-03-06 17:42:49 +00:00
|
|
|
echo "<h3>Create an account with ".PROJECT."</h3>
|
|
|
|
<form method=post action=create_account_action.php>
|
|
|
|
";
|
|
|
|
|
|
|
|
start_table();
|
|
|
|
row2("<b>Name:</b>
|
|
|
|
<br><font size=-1>
|
|
|
|
This will identify you on our web site.
|
|
|
|
Use your real name or a nickname.
|
|
|
|
</font>",
|
|
|
|
"<input name=new_name size=30>"
|
|
|
|
);
|
|
|
|
row2("<b>Email address:</b>
|
|
|
|
<br><font size=-1>
|
|
|
|
Must be a valid address of the form name@domain.
|
|
|
|
</font>",
|
|
|
|
"<input name=new_email_addr size=50>"
|
|
|
|
);
|
|
|
|
|
|
|
|
row2_init("<b>Country:</b>
|
|
|
|
<br><font size=-1>Select the country you wish to represent, if any.</font>",
|
|
|
|
"<select name=country>"
|
|
|
|
);
|
2002-11-11 10:26:40 +00:00
|
|
|
print_country_select();
|
2003-03-06 17:42:49 +00:00
|
|
|
echo "</select></td></tr>\n";
|
2002-11-11 10:26:40 +00:00
|
|
|
|
2003-03-06 17:42:49 +00:00
|
|
|
row2("<b>Postal or ZIP code:</b>
|
|
|
|
<br><font size=-1>Optional</font>",
|
|
|
|
"<input name=postal_code size=20>"
|
|
|
|
);
|
2002-11-11 10:26:40 +00:00
|
|
|
|
2003-03-06 17:42:49 +00:00
|
|
|
row2("", "<input type=submit value=\"Create account\">");
|
|
|
|
end_table();
|
|
|
|
echo "</form>\n";
|
2002-11-11 10:26:40 +00:00
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|