Red wrote:
> end tag for "FORM" which is not finished
>
> The error occurs on the first '/' in "https://" of this line:
> <FORM NAME=login ACTION=https://thesite.com/login.php METHOD=post>
That action URI should be in quotes:
<FORM NAME=login ACTION="https://thesite.com/login.php" METHOD=post>
The validator is parsing along and finds action=https: and then finds a /. A
/ signifies the beginning of a closing tag, but the opening tag has not been
completed yet, with a >.
Odd sort of error but that is your problem
--
Cheers
Richard.