Ive been trying to work out the latest release of FormBuilder and make a template for it that is a replica of my currently activated form (using a different script not within CMSMS). I know I stuffed up big with it cause I cant get any of the form inputs to display. The submit button seems to show however. This is the code I have for the template:
Code: Select all
{$hidden}
<table width="385" border="0" cellspacing="0" cellpadding="0" height="152" class="bodytext">
<tr>
<td width="107" height="15">Full Name:</td>
<td width="299" height="15">
{$full_name->input}
</td>
</tr>
<tr>
<td width="107" height="15">Email Address:</td>
<td width="299" height="15">
{$email_address->input}
</td>
</tr>
<tr>
<td width="107" height="15">Contact Phone:</td>
<td width="299" height="15">
{$contact_phone->input}
</td>
</tr>
<tr>
<td width="107" height="15">Message:</td>
<td width="299" height="15">
{$message->input}
</td>
</tr>
<tr>
<td width="107" height="29"></td>
<td width="299" height="29">
{$submit}
</td>
</tr>
</table>
It is pretty late here at the moment, so maybe I am just missing the complete obvious, but does anyone know how I could get this working? I'm not really interested in using an array kind of setup cause the fields wont be changing in the future as this is a small basic contact form.
Hope someone can help with this. Thanks alot guys.
Jon