mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
#12218 Fix show hide password button
This commit is contained in:
parent
dda7c2a0c0
commit
3e20ff7eaa
@ -266,7 +266,7 @@ $passwordManageTable->data = [];
|
|||||||
|
|
||||||
$passwordManageTable->data['captions_newpassword'][0] = __('New password');
|
$passwordManageTable->data['captions_newpassword'][0] = __('New password');
|
||||||
$passwordManageTable->rowclass['fields_newpassword'] = 'w540px';
|
$passwordManageTable->rowclass['fields_newpassword'] = 'w540px';
|
||||||
$passwordManageTable->data['fields_newpassword'][0] = html_print_input_text_extended(
|
$passwordManageTable->data['fields_newpassword'][0] = '<div class="relative container-div-input-password ">'.html_print_input_text_extended(
|
||||||
'password_new',
|
'password_new',
|
||||||
'',
|
'',
|
||||||
'password_new',
|
'password_new',
|
||||||
@ -276,16 +276,17 @@ $passwordManageTable->data['fields_newpassword'][0] = html_print_input_text_exte
|
|||||||
$view_mode,
|
$view_mode,
|
||||||
'',
|
'',
|
||||||
[
|
[
|
||||||
'class' => 'input w100p',
|
'class' => 'input',
|
||||||
'placeholder' => __('Password'),
|
'placeholder' => __('Password'),
|
||||||
|
'style' => 'width: 540px',
|
||||||
],
|
],
|
||||||
true,
|
true,
|
||||||
true
|
true
|
||||||
);
|
).'</div>';
|
||||||
|
|
||||||
$passwordManageTable->data['captions_repeatpassword'][0] = __('Repeat new password');
|
$passwordManageTable->data['captions_repeatpassword'][0] = __('Repeat new password');
|
||||||
$passwordManageTable->rowclass['fields_repeatpassword'] = 'w540px';
|
$passwordManageTable->rowclass['fields_repeatpassword'] = 'w540px';
|
||||||
$passwordManageTable->data['fields_repeatpassword'][0] = html_print_input_text_extended(
|
$passwordManageTable->data['fields_repeatpassword'][0] = '<div class="relative container-div-input-password ">'.html_print_input_text_extended(
|
||||||
'password_confirm',
|
'password_confirm',
|
||||||
'',
|
'',
|
||||||
'password_conf',
|
'password_conf',
|
||||||
@ -297,10 +298,11 @@ $passwordManageTable->data['fields_repeatpassword'][0] = html_print_input_text_e
|
|||||||
[
|
[
|
||||||
'class' => 'input w100p',
|
'class' => 'input w100p',
|
||||||
'placeholder' => __('Password confirmation'),
|
'placeholder' => __('Password confirmation'),
|
||||||
|
'style' => 'width: 540px',
|
||||||
],
|
],
|
||||||
true,
|
true,
|
||||||
true
|
true
|
||||||
);
|
).'</div>';
|
||||||
|
|
||||||
if ($new_user === false && users_is_admin() === false) {
|
if ($new_user === false && users_is_admin() === false) {
|
||||||
$passwordManageTable->data['captions_currentpassword'][0] = __('Current password');
|
$passwordManageTable->data['captions_currentpassword'][0] = __('Current password');
|
||||||
|
@ -11763,16 +11763,14 @@ p.trademark-copyright {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.show-hide-pass {
|
.show-hide-pass {
|
||||||
position: absolute;
|
position: fixed;
|
||||||
right: 9px;
|
|
||||||
top: 4px;
|
|
||||||
border: 0;
|
border: 0;
|
||||||
outline: none;
|
outline: none;
|
||||||
margin: 0;
|
margin-left: -50px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
width: 40px;
|
width: 40px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-block;
|
display: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
.show-hide-pass-background {
|
.show-hide-pass-background {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user