app/lib/FFCMS/Controllers/User/Base.php 1 location
|
@@ 57-64 (lines=8) @@
|
54 |
|
* @param \Base $f3 |
55 |
|
* @return void |
56 |
|
*/ |
57 |
|
public function login(\Base $f3) |
58 |
|
{ |
59 |
|
$this->dnsbl(); |
60 |
|
$this->redirectLoggedInUser(); |
61 |
|
$this->csrf('@user'); |
62 |
|
$f3->set('form', $f3->get('REQUEST')); |
63 |
|
echo \View::instance()->render('user/login.phtml'); |
64 |
|
} |
65 |
|
|
66 |
|
|
67 |
|
/** |
app/lib/FFCMS/Controllers/User/ForgotPassword.php 1 location
|
@@ 23-30 (lines=8) @@
|
20 |
|
* @param \Base $f3 |
21 |
|
* @return void |
22 |
|
*/ |
23 |
|
public function forgotPasswordStep1(\Base $f3) |
24 |
|
{ |
25 |
|
$this->redirectLoggedInUser(); |
26 |
|
$this->csrf(); |
27 |
|
|
28 |
|
$f3->set('form', $f3->get('REQUEST')); |
29 |
|
echo \View::instance()->render('forgot_password/forgot_password_step1.phtml'); |
30 |
|
} |
31 |
|
|
32 |
|
|
33 |
|
/** |
app/lib/FFCMS/Controllers/User/User.php 1 location
|
@@ 288-295 (lines=8) @@
|
285 |
|
* @param \Base $f3 |
286 |
|
* @return void |
287 |
|
*/ |
288 |
|
public function register(\Base $f3) |
289 |
|
{ |
290 |
|
$this->redirectLoggedInUser(); |
291 |
|
$this->csrf('@user'); |
292 |
|
|
293 |
|
$f3->set('form', $f3->get('REQUEST')); |
294 |
|
echo \View::instance()->render('user/register.phtml'); |
295 |
|
} |
296 |
|
|
297 |
|
|
298 |
|
/** |