<?php
require_once(BASE."include/util.php");
/********************/
/* New Account Form */
echo "<div class='default_container'>\n";
echo '<form method="post" action="account.php">',"\n";
echo html_frame_start("Create New Application DB Account","400","",0)
?>
<!-- start of new account form -->
<table border=0 width="100%" cellspacing=0 cellpadding=20>
<tr>
<td class=color1> E-mail </td>
<td class=color0> <input type="text" name="sUserEmail" value='<?php if(!empty($aClean['sUserEmail'])) echo $aClean['sUserEmail']?>'> </td>
</tr>
<td class=color1> Password </td>
<td class=color0> <input type="password" name="sUserPassword"> </td>
<td class=color1> Password (again) </td>
<td class=color0> <input type="password" name="sUserPassword2"> </td>
<td class=color1> Real Name </td>
<td class=color0> <input type="text" name="sUserRealname" value='<?php if(!empty($aClean['sUserRealname'])) echo $aClean['sUserRealname']?>'> </td>
echo "<tr><td class=color1> Wine version </td><td class=color0>";
make_bugzilla_version_list("sWineRelease", $aClean['sWineRelease']);
echo "</td></tr>";
<td colspan=2 align=center class=color3>
<input type="submit" name="sCreate" value=" Create Account " class=button>
</td>
</table>
<!-- end of new account form -->
echo html_frame_end(" ");
echo '<input type="hidden" name="sCmd" value="do_new">',"\n";
echo '</form>',"\n";
echo "</div>\n";
echo p(),p(),p();