|
4 | 4 | <div class="change-customer-pwd fieldset-wrapper">
|
5 | 5 | <div class="fieldset-wrapper-title">
|
6 | 6 | <strong class="title">
|
7 |
| - <span><?php /* @escapeNotVerified */ echo $block->escapeHtml(__('Change Password')); ?></span> |
| 7 | + <span><?= /* @escapeNotVerified */ $block->escapeHtml(__('Change Password')); ?></span> |
8 | 8 | </strong>
|
9 | 9 | </div>
|
10 | 10 |
|
11 | 11 | <div class="admin__fieldset-wrapper-content">
|
12 |
| - <form action="<?php echo $block->escapeUrl($block->getUrl('customer/password/changePwdPost')); ?>" |
| 12 | + <form action="<?= $block->escapeUrl($block->getUrl('customer/password/changePwdPost')); ?>" |
13 | 13 | method="post">
|
14 |
| - <?php echo $this->getBlockHtml('formkey')?> |
15 |
| - <input id="customer_id" type="hidden" name="customer_id" value="<?php echo $block->escapeHtml($customerId); ?>" /> |
| 14 | + <?= $block->getBlockHtml('formkey') ?> |
| 15 | + <input id="customer_id" type="hidden" name="customer_id" value="<?= $block->escapeHtml($customerId); ?>" /> |
16 | 16 | <div class="admin__field">
|
17 | 17 | <label class="admin__field-label">
|
18 |
| - <span><?php /* @escapeNotVerified */ echo __('Enter Password'); ?></span> |
| 18 | + <span><?= /* @escapeNotVerified */ $block->escapeHtml(__('Enter Password')); ?></span> |
19 | 19 | </label>
|
20 | 20 | </div>
|
21 | 21 | <div class="admin__field-control">
|
22 |
| - <input class="admin__control-text" type="password" aria-label="Password" name="new_customer_pwd" style="width: 48%" title=""> |
| 22 | + <input class="admin__control-text" |
| 23 | + type="password" |
| 24 | + aria-label="<?= $block->escapeHtml(__('Password')) ?>" |
| 25 | + name="new_customer_pwd" |
| 26 | + style="width: 48%" |
| 27 | + title=""> |
23 | 28 | </div>
|
24 | 29 |
|
25 | 30 | <div class="admin__field-control action">
|
26 |
| - <button id="save" title="Save Customer" type="submit" class="action- scalable save primary ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" data-form-role="save" data-ui-id="save-button" role="button" aria-disabled="false"> |
| 31 | + <button id="save" |
| 32 | + title="<?= $block->escapeHtml(__('Save Customer')) ?>" |
| 33 | + type="submit" |
| 34 | + class="action-scalable |
| 35 | + save primary ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" |
| 36 | + data-form-role="save" |
| 37 | + data-ui-id="save-button" |
| 38 | + role="button" |
| 39 | + aria-disabled="false"> |
27 | 40 | <span class="ui-button-text">
|
28 |
| - <span><?php /* @escapeNotVerified */ echo $block->escapeHtml(__('Update Password')); ?></span> |
| 41 | + <span><?= /* @escapeNotVerified */ $block->escapeHtml(__('Update Password')); ?></span> |
29 | 42 | </span>
|
30 | 43 | </button>
|
31 | 44 | </div>
|
|
0 commit comments