. */ require_once('./index.php'); require_once('./login.php'); require('./header.php'); ?>

Settings

Password
The passwords don\'t match.
'; } else if (!$_user->verifyPassword($_POST['password_current'])) { echo '
The current password was incorrect.
'; } else { try { $_user->setPassword($_POST['password_update']); echo '
Password successfully changed.
'; } catch (PDOException $e) { echo '
An unknown error occurred.
'; } } } ?>