account_settings: Remove unused id and classes for password field.

`.change_password_button` and `#pw_change_link` were unused.
I've not checked for any other unused classes in this page, only
the password field. This was noticed when trying to make a layout
change for the password field and the change was moved to a preparatory
commit for the same.
This commit is contained in:
Shubham Padia 2024-07-03 07:40:37 +00:00 committed by Tim Abbott
parent 6b5618b9d8
commit 08ee4be121
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@
{{#if user_can_change_password}}
<div>
<label class="inline-block title">{{t "Password" }}</label>
<div class="input-group inline-block" id="pw_change_link">
<button id="change_password" type="button" class="change_password_button btn-link small button rounded inline-block" data-dismiss="modal">********<i class="fa fa-pencil"></i></button>
<div class="input-group inline-block">
<button id="change_password" type="button" class="btn-link small button rounded inline-block" data-dismiss="modal">********<i class="fa fa-pencil"></i></button>
</div>
</div>
{{/if}}