MediaWiki:Skin/Projekt:Adventure/459.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(für Düne) |
K |
||
Zeile 7: | Zeile 7: | ||
addOnloadHook( function () { | addOnloadHook( function () { | ||
// INIT | // INIT | ||
− | document.getElementById("eingabe2").innerHTML=("<form action='#' id='form2'><input id='ef2' type='text'></input> <input type='submit' value=' | + | 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 () { | document.getElementById("form2").onsubmit = function () { | ||
if (document.getElementById("ef2").value == CODE) | if (document.getElementById("ef2").value == CODE) |
Version vom 26. Juni 2011, 20:52 Uhr
var CODE = "Hier Passwort eintragen"; //
var RICHTIG = "Projekt:Adventure/523"; //
var FALSCH = "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(RICHTIG);
}
else
{
// Falsch geraten
location.href = wgScript+"?title="+encodeURI(FALSCH);
}
}
return false; // Für den IE
}
});