summaryrefslogtreecommitdiff
path: root/backend/php/src/setup/setup_library/authentication.php
authorGiulio Cesare Solaroli <giulio.cesare@solaroli.it>2011-10-03 16:04:12 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@solaroli.it>2011-10-03 16:04:12 (UTC)
commit541bb378ddece2eab135a8066a16994e94436dea (patch) (unidiff)
treeff160ea3e26f7fe07fcfd401387c5a0232ca715e /backend/php/src/setup/setup_library/authentication.php
parent1bf431fd3d45cbdf4afa3e12afefe5d24f4d3bc7 (diff)
parentecad5e895831337216544e81f1a467e0c68c4a6a (diff)
downloadclipperz-541bb378ddece2eab135a8066a16994e94436dea.zip
clipperz-541bb378ddece2eab135a8066a16994e94436dea.tar.gz
clipperz-541bb378ddece2eab135a8066a16994e94436dea.tar.bz2
Merge pull request #1 from gcsolaroli/master
First version of the restructured repository
Diffstat (limited to 'backend/php/src/setup/setup_library/authentication.php') (more/less context) (show whitespace changes)
-rw-r--r--backend/php/src/setup/setup_library/authentication.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/backend/php/src/setup/setup_library/authentication.php b/backend/php/src/setup/setup_library/authentication.php
new file mode 100644
index 0000000..6a6954a
--- a/dev/null
+++ b/backend/php/src/setup/setup_library/authentication.php
@@ -0,0 +1,30 @@
1<?php
2if (sizeof($_POST) > 0 && $GLOBALS['configuration']['setup_password'] != "" && (!isset($_SESSION['authenticated']) || !$_SESSION['authenticated']))
3{
4 if ($_POST['setup_password'] == $GLOBALS['configuration']['setup_password'])
5 {
6 $_SESSION['authenticated'] = true;
7 }
8 $_POST = null;
9}
10if ((!isset($_SESSION['authenticated']) || !$_SESSION['authenticated']) && $GLOBALS['configuration']['setup_password'] != "")
11{
12?>
13<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
14<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
15<head>
16<title>Php Object Generator Setup <?=$GLOBALS['configuration']['versionNumber'].$GLOBALS['configuration']['revisionNumber']?></title>
17<link rel="stylesheet" href="./setup.css" type="text/css" />
18<link rel="stylesheet" type="text/css" href="./setup_library/xPandMenu.css"/>
19<div align="center">
20<form action="./index.php" method="POST"><br/>
21<img src="setup_images/mini_pog.jpg"/><br/><br/>
22<input name="setup_password" type="password" class="i"/>
23<br/><br/><input type="image" src="setup_images/generate.jpg" name="submit"/>
24</form>
25</div>
26</html>
27<?php
28exit;
29}
30?> \ No newline at end of file