Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed email and password field alignment. #2126

Merged
merged 1 commit into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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