mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-23 17:03:47 +01:00
Fix solution implement in last commit
This commit is contained in:
parent
6f30c6cbe7
commit
dbfc8506d5
2 changed files with 7 additions and 3 deletions
|
@ -1249,9 +1249,11 @@ class LSsession {
|
||||||
LStemplate :: assign('recoverpasswordform_label_submit',_('Validate'));
|
LStemplate :: assign('recoverpasswordform_label_submit',_('Validate'));
|
||||||
LStemplate :: assign('recoverpasswordform_label_back',_('Back'));
|
LStemplate :: assign('recoverpasswordform_label_back',_('Back'));
|
||||||
|
|
||||||
|
$recoverpassword_step = 'start';
|
||||||
$recoverpassword_msg = _('Please fill the identifier field to proceed recovery procedure');
|
$recoverpassword_msg = _('Please fill the identifier field to proceed recovery procedure');
|
||||||
|
|
||||||
if (isset($recoveryPasswordInfos['recoveryHashMail'])) {
|
if (isset($recoveryPasswordInfos['recoveryHashMail'])) {
|
||||||
|
$recoverpassword_step = 'token_sent';
|
||||||
$recoverpassword_msg = getFData(
|
$recoverpassword_msg = getFData(
|
||||||
_("An email has been sent to %{mail}. " .
|
_("An email has been sent to %{mail}. " .
|
||||||
"Please follow the instructions on it."),
|
"Please follow the instructions on it."),
|
||||||
|
@ -1260,12 +1262,14 @@ class LSsession {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($recoveryPasswordInfos['newPasswordMail'])) {
|
if (isset($recoveryPasswordInfos['newPasswordMail'])) {
|
||||||
|
$recoverpassword_step = 'new_password_sent';
|
||||||
$recoverpassword_msg = getFData(
|
$recoverpassword_msg = getFData(
|
||||||
_("Your new password has been sent to %{mail}. "),
|
_("Your new password has been sent to %{mail}. "),
|
||||||
$recoveryPasswordInfos['newPasswordMail']
|
$recoveryPasswordInfos['newPasswordMail']
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LStemplate :: assign('recoverpassword_step',$recoverpassword_step);
|
||||||
LStemplate :: assign('recoverpassword_msg',$recoverpassword_msg);
|
LStemplate :: assign('recoverpassword_msg',$recoverpassword_msg);
|
||||||
|
|
||||||
self :: setTemplate('recoverpassword.tpl');
|
self :: setTemplate('recoverpassword.tpl');
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<div class='recoverpasswordform'>
|
<div class='recoverpasswordform'>
|
||||||
<img src='{img name='logo'}' alt='Logo' id='recoverpasswordform_logo' />
|
<img src='{img name='logo'}' alt='Logo' id='recoverpasswordform_logo' />
|
||||||
<div id='loading_zone'></div>
|
<div id='loading_zone'></div>
|
||||||
{if !isset($recoverpassword_msg)}
|
{if $recoverpassword_step == 'start'}
|
||||||
<form action='{$recoverpasswordform_action}' method='post'>
|
<form action='{$recoverpasswordform_action}' method='post'>
|
||||||
<dl class='recoverpasswordform'>
|
<dl class='recoverpasswordform'>
|
||||||
<dt {$recoverpasswordform_ldapserver_style}>{$recoverpasswordform_label_ldapserver|escape:"htmlall"}</dt>
|
<dt {$recoverpasswordform_ldapserver_style}>{$recoverpasswordform_label_ldapserver|escape:"htmlall"}</dt>
|
||||||
|
@ -27,9 +27,9 @@
|
||||||
<dd><input type='submit' value='{$recoverpasswordform_label_submit|escape:"htmlall"}' /></dd>
|
<dd><input type='submit' value='{$recoverpasswordform_label_submit|escape:"htmlall"}' /></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</form>
|
</form>
|
||||||
{else}
|
|
||||||
<p id='recoverpassword_msg'>{$recoverpassword_msg|escape:"htmlall"}</p>
|
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
<p id='recoverpassword_msg'>{$recoverpassword_msg|escape:"htmlall"}</p>
|
||||||
<span>{$lang_label|escape:"htmlall"} : <img id='LSlang' src='{img name=$LSlang}' alt='{$LSlang|escape:"htmlall"}' title='{$LSlang|escape:"htmlall"}'/></span>
|
<span>{$lang_label|escape:"htmlall"} : <img id='LSlang' src='{img name=$LSlang}' alt='{$LSlang|escape:"htmlall"}' title='{$LSlang|escape:"htmlall"}'/></span>
|
||||||
<a href='index.php' id='recoverpassword_back'>{$recoverpasswordform_label_back|escape:"htmlall"}</a>
|
<a href='index.php' id='recoverpassword_back'>{$recoverpasswordform_label_back|escape:"htmlall"}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue