Ejemplo n.º 1
0
<?php

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

        <h2>Reset Your Password</h2>

        <form method="post" action="accountverify.php">
            <div>
Ejemplo n.º 2
0
<?php

session_start();
include_once "../inc/constants.inc.php";
include_once "../inc/class.users.inc.php";
$userObj = new SpinnereyeUsers();
if (!empty($_POST['action']) && isset($_SESSION['LoggedIn']) && $_SESSION['LoggedIn'] == 1) {
    if ($userObj->confirmAccount() === TRUE) {
        switch ($_POST['action']) {
            case 'changeemail':
                $status = $userObj->updateEmail() ? "changed" : "failed";
                header("Location: /account.php?email={$status}");
                break;
            case 'changepassword':
                $status = $userObj->updatePassword() ? "changed" : "nomatch";
                header("Location: /account.php?password={$status}");
                break;
            case 'deleteaccount':
                $userObj->deleteAccount();
                break;
            case 'testinput':
                error_log('testinput');
                $userObj->checkUsername();
                break;
            default:
                header("Location: /");
                break;
        }
    } else {
        $status = 'failed';
        header("Location: /account.php?password={$status}");
Ejemplo n.º 3
0
<?php

include_once "common/base.php";
$pageTitle = "Verify Your Account";
include_once "common/header.php";
echo '<div class="wrapp">';
if (isset($_GET['v']) && isset($_GET['e'])) {
    include_once "inc/class.users.inc.php";
    $users = new SpinnereyeUsers($db);
    $ret = $users->verifyAccount();
} elseif (isset($_POST['v'])) {
    include_once "inc/class.users.inc.php";
    $users = new SpinnereyeUsers($db);
    $ret = $users->updatePassword();
} else {
    header("Location: /signup.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 />