diff options
| author | Frederic Guillot <fred@kanboard.net> | 2016-01-09 17:28:31 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2016-01-09 17:28:31 -0500 |
| commit | 26e3996014936268f4acbfa214fa881af9320ddd (patch) | |
| tree | 5f7fa2c1b73e4443ce75e8919383bdf775492304 /app/Controller/User.php | |
| parent | 03032c3190a27408d60e27f486a4ca472448e9dc (diff) | |
Add forgot password feature
Diffstat (limited to 'app/Controller/User.php')
| -rw-r--r-- | app/Controller/User.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/Controller/User.php b/app/Controller/User.php index 8b6df44c..2a811219 100644 --- a/app/Controller/User.php +++ b/app/Controller/User.php @@ -173,6 +173,20 @@ class User extends Base } /** + * Display last password reset + * + * @access public + */ + public function passwordReset() + { + $user = $this->getUser(); + $this->response->html($this->layout('user/password_reset', array( + 'tokens' => $this->passwordReset->getAll($user['id']), + 'user' => $user, + ))); + } + + /** * Display last connections * * @access public |
