Just configured from Wine's GIT
svn path=/; revision=1
This commit is contained in:
49
include/form_new.php
Normal file
49
include/form_new.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<?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 -->
|
||||
The password will be sent to your e-mail
|
||||
<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>
|
||||
<tr>
|
||||
<td class=color1> Real Name </td>
|
||||
<td class=color0> <input type="text" name="sUserRealname" value='<?php if(!empty($aClean['sUserRealname'])) echo $aClean['sUserRealname']?>'> </td>
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
echo "<tr><td class=color1> Wine version </td><td class=color0>";
|
||||
echo make_bugzilla_version_list("sWineRelease", isset($aClean['sWineRelease']) ? $aClean['sWineRelease'] : '');
|
||||
echo "</td></tr>";
|
||||
|
||||
?>
|
||||
|
||||
<tr>
|
||||
<td colspan=2 align=center class=color3>
|
||||
<input type="submit" name="sCreate" value=" Create Account " class=button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- end of new account form -->
|
||||
|
||||
<?php
|
||||
|
||||
echo html_frame_end(" ");
|
||||
echo '<input type="hidden" name="sCmd" value="do_new">',"\n";
|
||||
echo '</form>',"\n";
|
||||
echo "</div>\n";
|
||||
|
||||
echo p(),p(),p();
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user