Skip to content

Commit

Permalink
FIX addinf a "div" for better interaction with login submit button
Browse files Browse the repository at this point in the history
  • Loading branch information
hregis committed Aug 4, 2019
1 parent 7f42380 commit e81ccf1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions htdocs/core/tpl/login.tpl.php
Expand Up @@ -199,7 +199,10 @@
<div id="login_line2" style="clear: both">

<!-- Button Connection -->
<br><input type="submit" class="button" value="&nbsp; <?php echo $langs->trans('Connection'); ?> &nbsp;" tabindex="5" />
<br>
<div id="login-submit-wrapper">
<input type="submit" class="button" value="&nbsp; <?php echo $langs->trans('Connection'); ?> &nbsp;" tabindex="5" />
</div>

<?php
if ($forgetpasslink || $helpcenterlink)
Expand All @@ -211,7 +214,7 @@
if ($dol_use_jmobile) $moreparam.=(strpos($moreparam,'?')===false?'?':'&').'dol_use_jmobile='.$dol_use_jmobile;

echo '<br>';
echo '<div class="center" style="margin-top: 15px;">';
echo '<div class="center" style="margin-top: 5px;">';
if ($forgetpasslink) {
$url=DOL_URL_ROOT.'/user/passwordforgotten.php'.$moreparam;
if (! empty($conf->global->MAIN_PASSWORD_FORGOTLINK)) $url=$conf->global->MAIN_PASSWORD_FORGOTLINK;
Expand Down

0 comments on commit e81ccf1

Please sign in to comment.