MediaWiki:Skin/Projekt:Adventure/459.js: Unterschied zwischen den Versionen

aus Kamelopedia, der wüsten Enzyklopädie
Zur Navigation springen Zur Suche springen
(Rum probiern...)
K (bugfix)
Zeile 20: Zeile 20:
 
        location.href = wgScript+"?title="+encodeURI(FALS);
 
        location.href = wgScript+"?title="+encodeURI(FALS);
 
        }
 
        }
}
 
 
                 return false; // Für den IE
 
                 return false; // Für den IE
 
}
 
}
 
});
 
});

Version vom 26. Juni 2011, 20:55 Uhr

var CODE = "Hier Passwort eintragen"; //
var RICH = "Projekt:Adventure/523"; //
var FALS = "Projekt:Adventure/524"; //
 
// Damit man nur mit Passwort reinkommt
 
addOnloadHook( function () {
	// INIT
	document.getElementById("eingabe2").innerHTML=("<form action='#' id='form2'><input id='ef2' type='text'></input>&ensp;<input type='submit' value='Versuchen' id='okbtn2'/></form>");
	document.getElementById("form2").onsubmit = function () {
		if (document.getElementById("ef2").value == CODE)
		{
			// Richtiges Passwort
			location.href = wgScript+"?title="+encodeURI(RICH);
		}
		else
		{

		         // Falsch geraten
		         location.href = wgScript+"?title="+encodeURI(FALS);
	        }
                return false; // Für den IE
	}
});