Skip to content

Commit

Permalink
make SMTP username and password non required
Browse files Browse the repository at this point in the history
  • Loading branch information
omohokcoj committed Oct 1, 2023
1 parent 1f41807 commit 3975c96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/email_smtp_settings/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
<div class="grid md:grid-cols-2 gap-4">
<div class="form-control">
<%= ff.label :username, class: 'label' %>
<%= ff.text_field :username, value: value['username'], required: true, class: 'base-input' %>
<%= ff.text_field :username, value: value['username'], class: 'base-input' %>
</div>
<div class="form-control">
<%= ff.label :password, class: 'label' %>
<%= ff.password_field :password, value: value['password'], required: true, class: 'base-input' %>
<%= ff.password_field :password, value: value['password'], class: 'base-input' %>
</div>
</div>
<div class="grid md:grid-cols-2 gap-4">
Expand Down

0 comments on commit 3975c96

Please sign in to comment.