Skip to content

Commit

Permalink
🦋 Hide password field at New Provider account (#3872)
Browse files Browse the repository at this point in the history
  • Loading branch information
lvillen committed Aug 28, 2024
1 parent 81788e7 commit 240ab50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/provider/admin/accounts/new.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ div class="pf-c-card"
' User Information
= form.fields_for [:user, @user] do |user|
= user.user_defined_form
= user.input :password, as: :patternfly_input, required: true
= user.input :password_confirmation, as: :patternfly_input, required: true
= user.input :password, as: :patternfly_input, input_html: { type: 'password' }, required: true
= user.input :password_confirmation, as: :patternfly_input, input_html: { type: 'password' }, required: true

section class="pf-c-form__section" role="group" aria-labelledby="form-section-org"
div class="pf-c-form__section-title" id="form-section-org" aria-hidden="true"
Expand Down

0 comments on commit 240ab50

Please sign in to comment.