Skip to content

Commit

Permalink
Fixed email and password field alignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeburg committed Oct 27, 2024
1 parent 8b512f5 commit 22582e3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/components/ch-form/password-field.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
>
<a href {{action this.toggleShow}} class="input-group-text border-start-0 bg-white">
{{#if this.showPassword}}
{{fa-icon "eye" fixed=true}}
{{fa-icon "eye" fixed=true title="Hide Password"}}
{{else}}
{{fa-icon "eye-slash" fixed=true}}
{{fa-icon "eye-slash" fixed=true title="Show Password"}}
{{/if}}
</a>
</div>
Expand Down
7 changes: 5 additions & 2 deletions app/templates/login.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,16 @@
@autocomplete="username"
@autofocus={{true}}
@noSpaces={{true}}
@size={{30}}/>
@size={{30}}
@wrapClass="col-12"
/>
</FormRow>
<FormRow>
<f.password @name="password"
@label="Password"
@autocomplete="current-password"
@size={{30}}/>
@size={{30}}
/>
</FormRow>
<FormRow>
<div class="col-sm-12 col-lg-4">
Expand Down

0 comments on commit 22582e3

Please sign in to comment.