Skip to content

Commit

Permalink
account updates
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@122 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Jan 25, 2001
1 parent d290cba commit aa05a50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions account_page.php3
Expand Up @@ -62,31 +62,31 @@
<? echo $s_username ?>:
</td>
<td width=60%>
<input type=text size=16 name=f_username value="<? echo $u_username ?>">
<input type=text size=16 maxlength=32 name=f_username value="<? echo $u_username ?>">
</td>
</tr>
<tr bgcolor=<? echo $g_primary_color_light ?>>
<td>
<? echo $s_email ?>:
</td>
<td>
<input type=text size=32 name=f_email value="<? echo $u_email ?>">
<input type=text size=32 maxlength=64 name=f_email value="<? echo $u_email ?>">
</td>
</tr>
<tr bgcolor=<? echo $g_primary_color_dark ?>>
<td>
<? echo $s_password ?>:
</td>
<td>
<input type=password size=32 name=f_password>
<input type=password size=32 maxlength=32 name=f_password>
</td>
</tr>
<tr bgcolor=<? echo $g_primary_color_light ?>>
<td>
<? echo $s_confirm_password ?>:
</td>
<td>
<input type=password size=32 name=f_password_confirm>
<input type=password size=32 maxlength=32 name=f_password_confirm>
</td>
</tr>
<tr bgcolor=<? echo $g_primary_color_dark ?>>
Expand Down
4 changes: 2 additions & 2 deletions account_prefs_page.php3
Expand Up @@ -72,15 +72,15 @@
<? echo $s_advanced_report ?>
</td>
<td>
<input type=checkbox name=f_advanced_report size=4 maxlength=4 <? if ( $u_advanced_report=="on" ) echo "CHECKED"?>
<input type=checkbox name=f_advanced_report <? if ( $u_advanced_report=="on" ) echo "CHECKED"?>
</td>
</tr>
<tr bgcolor=<? echo $g_primary_color_dark ?>>
<td>
<? echo $s_advanced_view ?>
</td>
<td>
<input type=checkbox name=f_advanced_view size=4 maxlength=4 <? if ( $u_advanced_view=="on" ) echo "CHECKED"?>
<input type=checkbox name=f_advanced_view <? if ( $u_advanced_view=="on" ) echo "CHECKED"?>
</td>
</tr>
<tr align=center>
Expand Down

0 comments on commit aa05a50

Please sign in to comment.