Skip to content
Snippets Groups Projects
Commit c1ab2cd2 authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: design

parent f1a3b2c8
No related branches found
No related tags found
No related merge requests found
...@@ -178,7 +178,9 @@ function dol_loginfunction($langs,$conf,$mysoc) ...@@ -178,7 +178,9 @@ function dol_loginfunction($langs,$conf,$mysoc)
{ {
$urllogo=DOL_URL_ROOT.'/theme/dolibarr_logo.png'; $urllogo=DOL_URL_ROOT.'/theme/dolibarr_logo.png';
} }
print '<td rowspan="2" align="center">'."\n"; $rowspan = 2;
if (! empty($conf->global->MAIN_MODULE_MULTICOMPANY)) $rowspan++;
print '<td rowspan="'.$rowspan.'" align="center" valign="top">'."\n";
if (empty($conf->browser->phone)) if (empty($conf->browser->phone))
{ {
print '<img alt="Logo" title="" src="'.$urllogo.'"'; print '<img alt="Logo" title="" src="'.$urllogo.'"';
...@@ -207,7 +209,6 @@ function dol_loginfunction($langs,$conf,$mysoc) ...@@ -207,7 +209,6 @@ function dol_loginfunction($langs,$conf,$mysoc)
print '<td valign="top" nowrap="nowrap">'; print '<td valign="top" nowrap="nowrap">';
print $html->selectarray('entity',$entity,$lastentity,0,0,0,1,'tabindex="3"'); print $html->selectarray('entity',$entity,$lastentity,0,0,0,1,'tabindex="3"');
print '</td></tr>'."\n"; print '</td></tr>'."\n";
print '<tr><td colspan="3">&nbsp;</td></tr>'."\n";
} }
// Security graphical code // Security graphical code
...@@ -217,7 +218,7 @@ function dol_loginfunction($langs,$conf,$mysoc) ...@@ -217,7 +218,7 @@ function dol_loginfunction($langs,$conf,$mysoc)
print '<tr><td valign="middle" nowrap="nowrap"> &nbsp; <b>'.$langs->trans("SecurityCode").'</b></td>'."\n"; print '<tr><td valign="middle" nowrap="nowrap"> &nbsp; <b>'.$langs->trans("SecurityCode").'</b></td>'."\n";
print '<td valign="top" nowrap="nowrap" align="left" class="e">'."\n"; print '<td valign="top" nowrap="nowrap" align="left" class="e">'."\n";
print '<table><tr>'."\n"; print '<table style="width: 100px;"><tr>'."\n"; // Force width to a small value
print '<td><input id="securitycode" class="flat" type="text" size="6" maxlength="5" name="code" tabindex="4"></td>'."\n"; print '<td><input id="securitycode" class="flat" type="text" size="6" maxlength="5" name="code" tabindex="4"></td>'."\n";
$width=128;$height=36; $width=128;$height=36;
if (! empty($conf->browser->phone)) $width=64; $height=24; if (! empty($conf->browser->phone)) $width=64; $height=24;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment