Beispiel #1
0
<?php

session_start();
include_once "../../inc/constants.inc.php";
include_once "../../inc/class.users.inc.php";
$userObj = new MarktPlatzUsers();
if (!empty($_POST['action']) && isset($_SESSION['LoggedIn']) && $_SESSION['LoggedIn'] == 1) {
    switch ($_POST['action']) {
        case 'changeemail':
            $status = $userObj->updateEmail() ? "changed" : "failed";
            header("Location: ../accounts.php?email={$status}");
            break;
        case 'changepassword':
            $status = $userObj->updatePassword() ? "changed" : "nomatch";
            header("Location: ../accounts.php?password={$status}");
            break;
        case 'change-user-data-submit':
            $status = $userObj->updateUserData() ? "changed" : "failed";
            header("Location: ../accounts.php?data={$status}");
            break;
        case 'deleteaccount':
            $userObj->deleteAccount();
            break;
        default:
            header("Location: ../");
            break;
    }
} elseif ($_POST['action'] == "resetpassword") {
    if ($resp = $userObj->resetPassword() === TRUE) {
        header("Location: ../resetpending.php");
    } else {
<?php

include_once "common/database.php";
$pageTitle = "Verify Your Account";
include_once "common/header.php";
if (isset($_GET['v']) && isset($_GET['e'])) {
    include_once "inc/class.users.inc.php";
    $users = new MarktPlatzUsers($db);
    $ret = $users->verifyAccount();
} elseif (isset($_POST['v'])) {
    include_once "inc/class.users.inc.php";
    $users = new MarktPlatzUsers($db);
    $ret = $users->updatePassword();
} else {
    header("Location: register.php");
    exit;
}
if (isset($ret[0])) {
    echo isset($ret[1]) ? $ret[1] : NULL;
    if ($ret[0] < 3) {
        ?>
 
 
        <h2>Choose a Password</h2> 
 
        <form method="post" action="accountverify.php"> 
            <div> 
                <label for="p">Choose a Password:</label> 
                <input type="password" name="p" id="p" /><br />                 
                <label for="r">Re-Type Password:</label> 
                <input type="password" name="r" id="r" /><br /> 
<?php

include_once "common/database.php";
if (isset($_GET['v']) && isset($_GET['e'])) {
    include_once "inc/class.users.inc.php";
    $users = new MarktPlatzUsers($db);
    $ret = $users->verifyAccount();
} elseif (isset($_POST['v'])) {
    include_once "inc/class.users.inc.php";
    $users = new MarktPlatzUsers($db);
    $status = $users->updatePassword() ? "changed" : "failed";
    header("Location: /accounts.php?password={$status}");
    exit;
} else {
    header("Location: /login.php");
    exit;
}
$pageTitle = "Reset Your Password";
include_once "common/header.php";
include_once "common/sidebar.php";
if (isset($ret[0])) {
    echo isset($ret[1]) ? $ret[1] : NULL;
    if ($ret[0] < 3) {
        ?>
 

<article id="main"> 
	<div id="loginbox">	
        <form action="accountverify.php" method="post">
			<fieldset>
				<legend>Login</legend>