From 5e84520b571eda5f69ce907aa838820533fd0737 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 7 Sep 2008 14:55:06 +0000 Subject: Series: Started ACP Refs #53 --- series/core/trunk/admin/login.php | 95 +++++++++++++++++++++++++++++++++++++++ series/core/trunk/admin/main.php | 25 +++++++++++ 2 files changed, 120 insertions(+) create mode 100644 series/core/trunk/admin/login.php create mode 100644 series/core/trunk/admin/main.php (limited to 'series/core/trunk/admin') diff --git a/series/core/trunk/admin/login.php b/series/core/trunk/admin/login.php new file mode 100644 index 0000000..fe394a1 --- /dev/null +++ b/series/core/trunk/admin/login.php @@ -0,0 +1,95 @@ +add('SITENAME', instaDisc_getConfig('siteName')); + $template->display(); + } else { + addError($numOfErrors, $errors, '', 'Account could not be found'); + showForm($_POST['username'], $_POST['password'], $errors); + } +} + +function showForm($username, $password, $errors) +{ + $template = new FITemplate('login'); + $template->add('SITENAME', instaDisc_getConfig('siteName')); + + if (isset($errors[1])) + { + $template->adds_block('ERROR', array('ex'=>'1')); + + foreach ($errors as $name => $value) + { + $template->adds_block('ERRORS', array( 'NAME' => $name, + 'MSG' => $value['msg'])); + } + } + + $template->add('USERNAME_ERR', ifErrors($errors, 'username')); + $template->add('PASSWORD_ERR', ifErrors($errors, 'password')); + + doErrors($template, $errors, 'username'); + doErrors($template, $errors, 'password'); + + $template->add('USERNAME', $username); + $template->add('PASSWORD', $password); + + $template->display(); +} + +function ifErrors($errors, $id) +{ + foreach ($errors as $name => $value) + { + if ($value['field'] == $id) + { + return ' error'; + } + } + + return ''; +} + +function doErrors($template, $errors, $id) +{ + foreach ($errors as $name => $value) + { + if ($value['field'] == $id) + { + $template->adds_block(strtoupper($id) . '_ERRS', array( 'NAME' => $name, + 'VALUE' => $value['msg'])); + } + } +} + +function addError(&$numOfErrors, &$errors, $field, $msg) +{ + $numOfErrors++; + $errors[$numOfErrors] = array('field' => $field, 'msg' => $msg); +} + +?> diff --git a/series/core/trunk/admin/main.php b/series/core/trunk/admin/main.php new file mode 100644 index 0000000..eb0e35b --- /dev/null +++ b/series/core/trunk/admin/main.php @@ -0,0 +1,25 @@ +add('SITENAME',instaDisc_getConfig('siteName')); +$template->display(); + +?> -- cgit 1.4.1