Skip to content

Commit

Permalink
tidied up signup CSS
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@579 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Dec 27, 2001
1 parent 05ecdff commit de5bd60
Showing 1 changed file with 26 additions and 32 deletions.
58 changes: 26 additions & 32 deletions signup_page.php3
Expand Up @@ -31,41 +31,35 @@
<? ### Signup form BEGIN ?>
<p>
<div align="center">
<table width="50%" bgcolor="<? echo $g_primary_border_color ?>" <? echo $g_primary_table_tags ?>>
<table class="width50" cellspacing="0">
<form method="post" action="<? echo $g_signup ?>">
<tr>
<td bgcolor="<? echo $g_white_color ?>">
<table cols="2" width="100%">
<form method="post" action="<? echo $g_signup ?>">
<tr>
<td colspan="2" bgcolor="<? echo $g_table_title_color ?>">
<b><? echo $s_signup_title ?></b>
</td>
</tr>
<tr bgcolor=<? echo $g_primary_color_dark ?>>
<td width="25%">
<? echo $s_username ?>:
</td>
<td width="75%">
<input type="text" name="f_username" size="32" maxlength="32">
</td>
</tr>
<tr bgcolor="<? echo $g_primary_color_light ?>">
<td>
<? echo $s_email ?>:
</td>
<td>
<input type="text" name="f_email" size="32" maxlength="64">
</td>
</tr>
<tr>
<td align="center" colspan="2">
<input type="submit" value="<? echo $s_signup_button ?>">
</td>
</tr>
</form>
</table>
<td class="form-title" colspan="2">
<? echo $s_signup_title ?>
</td>
</tr>
<tr class="row-1">
<td class="category" width="25%">
<? echo $s_username ?>:
</td>
<td width="75%">
<input type="text" name="f_username" size="32" maxlength="32">
</td>
</tr>
<tr class="row-2">
<td class="category">
<? echo $s_email ?>:
</td>
<td>
<input type="text" name="f_email" size="32" maxlength="64">
</td>
</tr>
<tr>
<td class="center" colspan="2">
<input type="submit" value="<? echo $s_signup_button ?>">
</td>
</tr>
</form>
</table>
</div>
<? ### Signup form END ?>
Expand Down

0 comments on commit de5bd60

Please sign in to comment.