boinc/html/user/create_account_form.php

45 lines
947 B
PHP
Raw Normal View History

<?php
include_once("util.inc");
page_head("Create account");
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>"
);
print_country_select();
echo "</select></td></tr>\n";
row2("<b>Postal or ZIP code:</b>
<br><font size=-1>Optional</font>",
"<input name=postal_code size=20>"
);
row2("", "<input type=submit value=\"Create account\">");
end_table();
echo "</form>\n";
page_tail();
?>