<html> <head> <title>{$mybb->settings['bbname']} - {$lang->personal_notepad}</title> {$headerinclude} </head> <body> {$header} <form action="usercp.php" method="post"> <input type="hidden" name="my_post_key" value="{$mybb->post_code}" /> <table width="100%" border="0" align="center"> <tr> {$usercpnav} <td valign="top"> <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder"> <tr> <td class="thead" colspan="2"><strong>{$lang->personal_notepad}</strong></td> </tr> <tr> <td align="center" class="trow1" width="100%"> <textarea name="notepad" cols="80" rows="15">{$mybb->user['notepad']}</textarea> </td> </tr> </table> <br /> <div align="center"> <input type="hidden" name="action" value="do_notepad" /> <input type="submit" class="button" name="submit" value="{$lang->update_notepad}" /> </div> </td> </tr> </table> </form> {$footer} </body> </html>
<td align="center" class="trow1" width="100%"> <textarea name="notepad" cols="8" rows="10" class="usercp_notepad">{$mybb->user['notepad']}</textarea> </td>
<td align="center" class="trow1" width="100%"> <textarea name="notepad" cols="160" rows="10" class="usercp_notepad">{$mybb->user['notepad']}</textarea> </td>
<br /> <form action="usercp.php" method="post"> <input type="hidden" name="my_post_key" value="{$mybb->post_code}" /> <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder"> <tr> <td class="thead"><strong>{$lang->personal_notepad}</strong></td> </tr> <tr> <td align="center" class="trow1" width="100%"> <textarea name="notepad" cols="160" rows="10" class="usercp_notepad">{$mybb->user['notepad']}</textarea> </td> </tr> </table> <br /> <div align="center"> <input type="hidden" name="action" value="do_notepad" /> <input type="submit" class="button" name="submit" value="{$lang->update_notepad}" /> </div> </form>