MediaWiki:Skin/Projekt:Adventure/459.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
J* (Diskussion | Beiträge) K (bugfix) |
K |
||
Zeile 1: | Zeile 1: | ||
− | var CODE = " | + | var CODE = "Gaibrasch Triebwut"; // |
− | var RICH = "Projekt:Adventure/ | + | var RICH = "Projekt:Adventure/525"; // |
var FALS = "Projekt:Adventure/524"; // | var FALS = "Projekt:Adventure/524"; // | ||
Aktuelle Version vom 26. Juni 2011, 20:58 Uhr
var CODE = "Gaibrasch Triebwut"; //
var RICH = "Projekt:Adventure/525"; //
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> <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
}
});