Skip to content

Commit 131303e

Browse files
committed
Merge remote-tracking branch 'origin/AC-8823' into spartans_pr_06092023
2 parents f6c9a2b + fb7767e commit 131303e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

app/code/Magento/Customer/Test/Mftf/Test/StorefrontLoginFormShowPasswordTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</actionGroup>
3232
<actionGroup ref="StorefrontLoginFormClickShowPasswordActionGroup" stepKey="clickShowPasswordCheckbox"/>
3333
<actionGroup ref="AssertLoginFormPasswordFieldActionGroup" stepKey="AssertPasswordField">
34-
<argument name="passwordFieldType" value="password"/>
34+
<argument name="passwordFieldType" value="text"/>
3535
</actionGroup>
3636
</test>
3737
</tests>

app/code/Magento/Customer/view/frontend/templates/form/login.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<div class="control">
3838
<input name="login[password]" type="password"
3939
<?php if ($block->isAutocompleteDisabled()): ?> autocomplete="off"<?php endif; ?>
40-
class="input-text" id="pass"
40+
class="input-text" id="password"
4141
title="<?= $block->escapeHtmlAttr(__('Password')) ?>"
4242
data-validate="{required:true}">
4343
</div>
@@ -68,7 +68,7 @@
6868
"components": {
6969
"showPassword": {
7070
"component": "Magento_Customer/js/show-password",
71-
"passwordSelector": "#pass"
71+
"passwordSelector": "#password"
7272
}
7373
}
7474
}

app/code/Magento/Customer/view/frontend/web/js/show-password.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* Copyright © Magento, Inc. All rights reserved.
3-
* See COPYING.txt for license details.
4-
*/
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
55

66
define([
77
'jquery',

0 commit comments

Comments
 (0)