The forms on your page are nested.
Forms do not "nest"; before you start another form
(with a "<form..."
tag)
the previous form must be closed (with the tag: "</form>"
).
Even if you only have one form on the page your HTML editor may have added
additional form tags, breaking the one form you do have.
Look at the HTML source of your page and make sure that none of the
forms are nested.
The search panel has an empty form tag.
Look at the "<form..."
tag at the start of the search panel HTML in your page
(or perhaps at the start of the page itself).
It should start "<form action=..."
.
If instead it is simply "<form>"
then you need
to fix the panel HTML.
The form "action" address is not correct.
Look at the "<form action=..."
tag at the start of the search panel HTML in your page.
The action value should be
"http://search.freefind.com/find.html"
.
If it is not then you need to fix the panel.
Note that if your action is incorrect, then most likely the various text links
in the search panel are also incorrect and will need to be fixed as well.
There is an empty <form> tag overriding the search panel <form> tag.
Look to see if there is an empty form tag
(like this: "<form>"
)
before the form tag which is at the start of your search panel.
If it is there, it should be removed.
There is some other problem with your search panel HTML.
Remove your old panel and add a new one using your text editor.