Skip to content
Snippets Groups Projects
Verified Commit 8ad48c54 authored by Florian Azizian's avatar Florian Azizian
Browse files

FEAT #12163 TIME 0:10 do not display forgot password if not in standard connect

parent 71c166ad
No related branches found
No related tags found
No related merge requests found
...@@ -31,11 +31,14 @@ echo '<form id="formlogin" method="post" action="' ...@@ -31,11 +31,14 @@ echo '<form id="formlogin" method="post" action="'
echo '<label for="pass">'._PASSWORD.'</label>'; echo '<label for="pass">'._PASSWORD.'</label>';
echo '<input name="pass" id="pass" value="" type="password" />'; echo '<input name="pass" id="pass" value="" type="password" />';
echo '</p>'; echo '</p>';
echo '<p style="cursor: pointer;font-size: 11px;">'; $loggingMethod = \SrcCore\models\CoreConfigModel::getLoggingMethod();
echo '<label>&nbsp;</label>'; if ($loggingMethod['id'] == 'standard') {
echo '<p style="cursor: pointer;font-size: 11px;">';
echo '<label>&nbsp;</label>';
echo '<span onclick="triggerAngular(\'#/forgot-password\')">'._FORGOT_PASSWORD.'</span>'; echo '<span onclick="triggerAngular(\'#/forgot-password\')">'._FORGOT_PASSWORD.'</span>';
echo '</p><br>'; echo '</p>';
echo '<p>'; }
echo '<br><p>';
echo '<label>&nbsp;</label>'; echo '<label>&nbsp;</label>';
echo '<input type="submit" class="button" name="submit" value="'._CONNECT.'" />'; echo '<input type="submit" class="button" name="submit" value="'._CONNECT.'" />';
echo '</p>'; echo '</p>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment