diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-06-01 12:30:31 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-06-01 12:30:31 -0700 |
commit | 91feef607687b1262a949835cffd850cdd819846 (patch) | |
tree | ff71d76eb079155303da88e804f6f50223fa4661 /htdocs | |
parent | 9ad57b3d8d1000f17962bb0ba00a8958b2f141db (diff) |
Started the account page.
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/moderate/account.php | 22 | ||||
-rw-r--r-- | htdocs/moderate/changepassword.php | 88 |
2 files changed, 22 insertions, 88 deletions
diff --git a/htdocs/moderate/account.php b/htdocs/moderate/account.php new file mode 100644 index 0000000..5fc87db --- /dev/null +++ b/htdocs/moderate/account.php @@ -0,0 +1,22 @@ +<?php + +/* Foursquare Community Site + * + * Copyright (C) 2011 Foursquare Church. + * + * Developers: Jesse Morgan <jmorgan@foursquarestaff.com> + * + */ + +require_once('../src/base.inc.php'); + +require_once('src/header.inc.php'); + +echo "<h3>Your Account</h3>"; + + + + +require_once('src/footer.inc.php'); + +?> diff --git a/htdocs/moderate/changepassword.php b/htdocs/moderate/changepassword.php deleted file mode 100644 index 646af94..0000000 --- a/htdocs/moderate/changepassword.php +++ /dev/null @@ -1,88 +0,0 @@ -<?php -/* $Id: changepassword.php 134 2011-03-08 23:35:57Z jessemorgan $ */ - -require_once('../src/base.inc.php'); - -if (!isset($_SESSION['currentUser'])) { - header('Location: ' . $CONFIG['siteroot'].'/admin/login.php'); - exit(); -} - -require_once('src/accounts.inc.php'); - -$form['errors'] = ""; - -if (count($_POST) > 0) { - $errors = array(); - - if (!isset($_POST['oldpassword']) or $_POST['oldpassword'] == '') { - $errors[] = "Old Password is a required field."; - } - - if (!isset($_POST['newpassword']) or $_POST['newpassword'] == '') { - $errors[] = "New Password is a required field."; - } - - if (!isset($_POST['newpassword2']) or $_POST['newpassword2'] == '') { - $errors[] = "Confirm New Password is a required field."; - } - - if (count($errors) == 0) { - if ($_POST['newpassword'] != $_POST['newpassword2']) { - $errors[] = "New password must match Confirm New Password"; - } - - $user = getAccount($_SESSION['currentUser']['id']); - - if (sha1($_POST['oldpassword']) != $user['password']) { - $errors[] = "Old Password does not match your current password."; - - } else { - // Update the password - updatePassword($_SESSION['currentUser']['id'], $_POST['newpassword']); - - header("Location: index.php"); - } - } - - - if (count($errors) > 0) { - $form['errors'] = "<ul><li>". implode("</li>\n<li>", $errors) ."</li></ul>"; - } -} - -require_once('src/header.inc.php'); - -?> - -<h2>Change Password</h2> - -<?php - echo $form['errors']; -?> - -<form method="post"> -<label>Old Password</label> -<div class="element"> - <input type="password" name="oldpassword" /> -</div> - -<label>New Password</label> -<div class="element"> - <input type="password" name="newpassword" /> -</div> - -<label>Confirm New Password</label> -<div class="element"> - <input type="password" name="newpassword2" /> -</div> - -<div class="buttons"> - <input type="submit" value="Change Password" /> -</div> - -<?php - -require_once('src/footer.inc.php'); - -?> |