diff --git a/app/views/feedbacks/_feedback_form.html.erb b/app/views/feedbacks/_feedback_form.html.erb
index d7d7edf68..18694dbe4 100644
--- a/app/views/feedbacks/_feedback_form.html.erb
+++ b/app/views/feedbacks/_feedback_form.html.erb
@@ -13,13 +13,13 @@
feedback_mail: mail_to(DefaultSetting::FEEDBACK_EMAIL, t('basics.mail_noun'))) %>
<%= form_with model: Feedback.new, remote: true do |f| %>
- <%# Title %>
+
<%= f.text_field :title, class: 'form-control', placeholder: '_' %>
<%= f.label :title, t('feedback.title') %>
- <%# Comment %>
+
<%= f.text_area :feedback,
class: 'form-control',
@@ -33,7 +33,7 @@
<%= f.label :feedback, t('feedback.comment') %>
- <%# Email contact %>
+
<%= f.check_box :can_contact,
checked: 'checked',
@@ -43,20 +43,20 @@
class: 'form-check-label' %>
- <%# Submit %>
- <%# Dummy submit button, the actual submit button is in the modal footer %>
+
+
<%= f.submit 'Submit', id: 'submit-feedback-form-btn', style: 'display: none;' %>
<% end %>