Please I Need Help!!
edit: here is the template:
HTML Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - vB Journal: Add New Entry</title>
<script type="text/javascript">
function validate()
{
form=document.vbform
entrytitle=form.title.value
entrytext=form.message.value
submitOK="true"
if(entrytitle.length<5)
{
alert("Your title for this entry must be at least 5 characters.")
submitOK="false"
}
if(entrytext.length<10)
{
alert("Your message for your journal entry must be at least 10 characters.")
submitOK="false"
}
if(submitOK=="false")
{
return false
}
}
</script>
$headinclude
</head>
<body$onload>
$header
$navbar
<br />
<if condition="$show[entrypreview]">
$entrypreview
<br />
</if>
<form action="journal.php" method="post" name="vbform" onsubmit="return validate()">
<input type="hidden" name="journalid" value="$j" />
<input type="hidden" name="do" value="insertentry" />
<table class="tborder" width="100%" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]" border="0" align="center">
<tr>
<td class="tcat">Add Entry:</td>
</tr>
<tr>
<td class="thead">General Journal Entry Information(Required):</td>
</tr>
<tr>
<td class="alt1">Entry Title: <input type="text" name="title" value="$preview[title]" maxlength="80" size="65" /></td>
</tr>
<tr>
<td class="alt2"><fieldset><legend>Entry Message:</legend>$messagearea</fieldset></td>
</tr>
<tr>
<td class="alt1">Mood: <select name="mood"><optgroup label="Moods">
<option value="0">None</option>
$moodbits</optgroup>
</select>
</td>
</tr>
<tr>
<td class="thead">Journal Entry Privacy(Optional):</td>
</tr>
<tr>
<td class="alt1">Would you like this entry to be private?<input type="checkbox" name="private" value="1" <if condition="$preview['private']==1">checked="checked" </if>/><br />
Allow Your Journal Buddies to View This Entry?<input type="checkbox" name="allowbudds" value="1" <if condition="$preview[allowbuddies]==1">checked="checked" </if>/><br />
If so, who can view?<input type="text" name="wcv" value="$preview[whocanview]" maxlength="150" size="100" /><div class="smallfont">(Type in the userids of the people who you wish to view this entry;remember to put a comma(,) inbetween each userid)</div></td>
</tr>
<tr>
<td class="thead" align="center"><input type="submit" name="submit" value="Submit Entry" class="button" /> <input type="submit" name="preview" value="Preview Entry" class="button" /></td>
</tr>
</table>
</form>
<br />
<div align="center" class="smallfont">$setting[copyright]</div>
<br />
$footer
</body>
</html>