Karl Jansen: Formular Problem

Beitrag lesen

Tag

Also habe folgendes Problem habe  Script zum Passwortschutz von folgender Seite geholt
http://www.webaid.de/js/index.shtml
unter Javascript 5 -> Passwort

und habe das folgerndermaßen eingebunden (is nur ne Test Seite)

<html>
<head>
<title>Formular-Seite</title>

function go() {
                   location.href = 'http://www.xxx.yyy/' + document.passwordForm.userid.value + '/' + document.passwordForm.password.value + '.shtml';
                   return false;
               }
</head>

<body>

<FORM action='onClick="go()"' NAME="passwordForm" onSubmit="return go()">
               <P>User-ID: <INPUT NAME="userid" TYPE="TEXT">
               <P>Passwort: <INPUT NAME="password" TYPE="PASSWORD">
               <INPUT TYPE="BUTTON" VALUE="Enter" onClick="go()">
</FORM>

<b>Hier dein Passwort und deinen Login namen eingeben</b>

</body>
</html>
-----------------------------------------------------------------------------------------------------------------------------------------
Mein Problem ist nun:

Wieso stellt der aber bei mir das Formular gar net dar?

Danke schonmal imvoraus

Karl