Installed and loving it!
I took some time to make it look more streamlined with styled buttons and the text box centered. Feel free to use my code in your next revision.
Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>$headinclude
<title>$vboptions[bbtitle] - My Notes</title>
</head>
<body>
$header
$navbar
<if condition="$notes_saved">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<tr>
<td class="tcat">Progress...</td>
</tr>
<tr>
<td class="alt1"><p style="color: red; font-weight: bold;">Your notes have been saved!</p></td>
</tr>
</table>
<br />
</if>
<form name="mynotes_form" method="post" id="mynotes_form" action="mynotes.php?do=savenotes">
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="savenotes" />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">My Notes</td>
</tr>
<tr>
<td class="alt1" align="center">
<textarea name="notes" id="notes" style="width: 800px; height: 600px;">$notes->notes</textarea>
<div style="margin-top:$stylevar[cellpadding]px">
<input type="submit" value="Save Changes" class="button" />
<input type="reset" value="Cancel" class="button" />
</div>
</td>
</tr>
</table>
</form>
$footer
</body>
</html>