Просмотр файла admin/name.js

Размер файла: 1.16Kb
<!--

function getCookie(name) {prefix = name + "=";
cookieStartIndex = document.cookie.indexOf(prefix);
 if (cookieStartIndex == -1)
 return null
cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length);
 if (cookieEndIndex == -1) cookieEndIndex = document.cookie.length;
 return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex));}

user = getCookie("user");

if (user) document.write("Привет админ " + user + "!");
else document.write('</p><p align="left"><form name="f">Введите ваше имя:<br /><input name="n" type="text" size="18" value=""><br /><input type="button" value="пройти" onClick="enter();"></form>');


function enter() {function setCookie(name, value, expires, path, domain, secure) {curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? ";  secure" : "");
document.cookie = curCookie;}

n=document.f.n.value;
now = new Date();
now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000);
setCookie("user", n, now);
location.href='menu.html';}

//-->