summaryrefslogtreecommitdiffstats
path: root/common/admin/inc/auth.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'common/admin/inc/auth.inc.php')
-rw-r--r--common/admin/inc/auth.inc.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/common/admin/inc/auth.inc.php b/common/admin/inc/auth.inc.php
new file mode 100644
index 0000000..d21467b
--- /dev/null
+++ b/common/admin/inc/auth.inc.php
@@ -0,0 +1,11 @@
+<?php
+include (dirname(__FILE__).'/pwd.inc.php');
+
+if ( isset($_COOKIE['auth']) && $_COOKIE['auth'] == $password ) {
+ //ok, cool
+} else {
+ setcookie('auth','', time()-3600);
+ header('Location: login.php');
+ die;
+}
+?> \ No newline at end of file