fix: Added annoying missing space between the password field's label and it's tooltip

pull/3071/head v2.4.89
iglocska 2018-03-23 14:37:59 +01:00
parent 65385eb323
commit 86cc300225
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
$passwordPopover = '<span class=\"blue bold\">Length</span>: ' . h($length) . '<br />';
$passwordPopover .= '<span class=\"blue bold\">Complexity</span>: ' . h($complexity);
echo $this->Form->input('password', array(
'label' => __('Password') . '<span id = "PasswordPopover" class="icon-info-sign" ></span>'
'label' => __('Password') . ' <span id = "PasswordPopover" class="icon-info-sign" ></span>'
));
echo $this->Form->input('confirm_password', array('type' => 'password', 'div' => array('class' => 'input password required')));
?>