Merge branch '2.4' of github.com:MISP/MISP into 2.4

pull/3707/head
iglocska 2018-07-20 09:42:06 +02:00
commit b99adf5d76
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
<div class="users form">
<?php echo $this->Form->create('User');?>
<?php echo $this->Form->create('User');?>
<fieldset>
<legend><?php echo __('Change Password'); ?></legend>
<?php
$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>', 'autofocus'
));
echo $this->Form->input('confirm_password', array('type' => 'password', 'div' => array('class' => 'input password required')));
?>