MyBB Community Forums

Full Version: COSMETIC - usercp_email
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
usercp_email

Find:

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->change_email}</strong></td>
</tr>
<tr>
<td class="tcat" colspan="2"><strong>{$lang->enter_password}</strong></td>
</tr>
<tr>
<td class="trow1" colspan="2" align="center"><input type="password" class="textbox" name="password" size="25" /></td>
</tr>
<tr>
<td class="tcat" colspan="2"><strong>{$lang->please_enter_confirm_new_email}</strong></td>
</tr>
<tr>
<td class="trow2" width="40%"><strong>{$lang->new_email}</strong></td>
<td class="trow2" width="60%"><input type="text" class="textbox" name="email" size="25" maxlength="150" value="{$email}" /></td>
</tr>
<tr>
<td class="trow1" width="40%"><strong>{$lang->confirm_email}</strong></td>
<td class="trow1" width="60%"><input type="text" class="textbox" name="email2" size="25" maxlength="150" value="{$email2}" /></td>
</tr>
</table>


Replace With:


<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->change_email}</strong></td>
</tr>
<tr>
<td class="tcat" colspan="2"><strong>{$lang->enter_password}</strong></td>
</tr>
<tr>
<td class="trow1" width="35%"></td>
<td class="trow1" width="60%"><input type="password" class="textbox" name="password" size="25" /></td>
</tr>
<tr>
<td class="tcat" colspan="2"><strong>{$lang->please_enter_confirm_new_email}</strong></td>
</tr>
<tr>
<td class="trow2" width="35%"><strong>{$lang->new_email}</strong></td>
<td class="trow2" width="60%"><input type="text" class="textbox" name="email" size="25" maxlength="150" value="{$email}" /></td>
</tr>
<tr>
<td class="trow1" width="35%"><strong>{$lang->confirm_email}</strong></td>
<td class="trow1" width="60%"><input type="text" class="textbox" name="email2" size="25" maxlength="150" value="{$email2}" /></td>
</tr>
</table>