Bug 33455: Fix the size of the patron change password heading

The H1 heading on the patron change password page in the staff
interface is too big and should be outside of the area with
form area with the white background.

Test plan:
1. In the staff interface, click on top right of menu and navigate
   to my account.
2. Click the 'Change password' button.
3. Note that title is now outside the legend and font size is
   comparable to other H1 headings (e.g. Duplicate).

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Catalyst Bug Squasher 2024-07-25 23:06:47 +00:00 committed by Martin Renvoize
parent 39ff970544
commit 3eb461bc9b
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -86,8 +86,11 @@
</div>
[% END %]
<h1>
<span>Change username and/or password for [% patron.firstname | html %] [% patron.surname | html %]</span>
</h1>
<fieldset class="rows"><legend><h1>Change username and/or password for [% patron.firstname | html %] [% patron.surname | html %]</h1></legend>
<fieldset class="rows">
<ol>
<li><label for="newuserid">New username:</label>
<input type="hidden" name="member" value="[% patron.borrowernumber | html %]" /><input type="text" id="newuserid" name="newuserid" size="20" value="[% patron.userid | html %]" /></li>