diff options
Diffstat (limited to 'r7r_repo/main.php')
-rw-r--r-- | r7r_repo/main.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/r7r_repo/main.php b/r7r_repo/main.php index 8e52af0..d28cb44 100644 --- a/r7r_repo/main.php +++ b/r7r_repo/main.php @@ -337,6 +337,31 @@ $url_handlers = array( echo $ste->exectemplate("admin.html"); }, + "account" => function(&$data, $url_now, &$url_next) + { + global $ste, $user; + + if($user === NULL) + throw new NotFoundError(); + + $url_next = array(); + $ste->vars["menu"] = "account"; + $ste->vars["title"] = "My Account"; + + if(isset($_POST["set_new_password"])) + { + if(empty($_POST["new_password"])) + $ste->vars["error"] = "Password must not be empty."; + else + { + $user->pwhash = PasswordHash::create($_POST["new_password"]); + $user->save(); + $ste->vars["success"] = "Password set."; + } + } + + echo $ste->exectemplate("account.html"); + }, "setup" => function(&$data, $url_now, &$url_next) { global $settings, $ste; |