1778 Posts in 581 Topics by 555 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 269 Views |
-
login form change lostpass url

14 February 2012 at 5:52am
Hello,
is there someone who knows where i can change the url for a lostpassword? i found on line 80 from /sapphire/security/MemberLoginForm.php a URL but when i change it nothing happens (i flusht and run a /dev/build)
Ronald
-
Re: login form change lostpass url

14 February 2012 at 4:07pm
The url is fixed as it is the name of the method (function lost password()) you could implement your own lost password form then you have control over the url or have redirection setup so site.com/resetpassword redirects to site.com/Security/lostpassword
-
Re: login form change lostpass url

15 February 2012 at 4:14pm
Thanks i have changed
/sapphire/security/Security.php (rule 449 to 467)public function LostPasswordForm() {
return new MemberLoginForm(
$this,
'LostPasswordForm',
new FieldSet(
new EmailField('Email', _t('Member.EMAIL', 'Email'))
),
new FieldSet(
new FormAction(
'forgotPassword',
_t('Security.BUTTONSEND', 'Send me the password reset link')
)
),
false
);
}TO
public function LostPasswordForm() {
Director::redirect('wachtwoord-vergeten');
/*
return new MemberLoginForm(
$this,
'LostPasswordForm',
new FieldSet(
new EmailField('Email', _t('Member.EMAIL', 'Email'))
),
new FieldSet(
new FormAction(
'forgotPassword',
_t('Security.BUTTONSEND', 'Send me the password reset link')
)
),
false
);
*/
}
| 269 Views | ||
|
Page:
1
|
Go to Top |


