Well I think I found a solution and hopefully it will help someone else out.
The original form is from
css-tricks.com/nice-and-simple-contact-form/
It was modified to fit our enviornment.
You will need to make the modification to the following:
contactthanks.php form.html.
You may or may not want a logo, if you do, you will need to create a images
directory in your public dir on your ClearOS server and place that image there.
To get this to work, place the folowing in the 'public' folder on the
ClearOS Server. Mine was '/var/webconfig/htdocs/public/
contactengine.php
contactthanks.php
form.html
form-style.css
images/yourlogo.whatever
Now you need to modify the filtered.php
After the close of the 'WebTableClose' function, and before the 'WebFooter'
function you need to add an additional 'WebTableOpen, and an additonal
'WebTableClose' plus a link for the form. I should look like this:
| Code: |
WebTableOpen("Request an Exception", "600");
echo "
<tr>
<td class='mytablesubheader' nowrap width='200'>Request an Exception here:</td>
<td><a href='form.html'>click here to request an exception</a></td>
</tr>
";
WebTableClose("600");
|
Updated file 2010-06-25