Skip to content

Commit

Permalink
fix btns on user action page
Browse files Browse the repository at this point in the history
  • Loading branch information
amshkv committed Apr 11, 2024
1 parent 5146bf5 commit 0453c13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/devise/confirmations/new.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ h2
value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email),
input_html: { autocomplete: 'email' }
.form-actions
= f.button :submit, t('.resend_confirmation_instructions')
= f.button :submit, t('.resend_confirmation_instructions'), class: 'btn-primary'
= render 'devise/shared/links'
2 changes: 1 addition & 1 deletion app/views/devise/passwords/new.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ h2
.form-inputs
= f.input :email, required: true, autofocus: true, input_html: { autocomplete: 'email' }
.form-actions
= f.button :submit, t('.send_me_reset_password_instructions')
= f.button :submit, t('.send_me_reset_password_instructions'), class: 'btn-primary'
= render 'devise/shared/links'
2 changes: 1 addition & 1 deletion app/views/devise/unlocks/new.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ h2
.form-inputs
= f.input :email, required: true, autofocus: true, input_html: { autocomplete: 'email' }
.form-actions
= f.button :submit, t('.resend_unlock_instructions')
= f.button :submit, t('.resend_unlock_instructions'), class: 'btn-primary'
= render 'devise/shared/links'

0 comments on commit 0453c13

Please sign in to comment.