diff options
Diffstat (limited to 'app/views/events/_form.html.erb')
-rw-r--r-- | app/views/events/_form.html.erb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/events/_form.html.erb b/app/views/events/_form.html.erb index da7f932..4c718ae 100644 --- a/app/views/events/_form.html.erb +++ b/app/views/events/_form.html.erb @@ -12,16 +12,16 @@ <% end %> <div> - <%= form.label :date, style: "display: block", class: "form-label" %> - <%= form.date_field :date, class: "form-control" %> + <%= form.label :date, style: "display: block" %> + <%= form.date_field :date %> </div> <div> - <%= form.label :name, style: "display: block", class: "form-label" %> - <%= form.text_field :name, class: "form-control" %> + <%= form.label :name, style: "display: block" %> + <%= form.text_field :name %> </div> <div> - <%= form.submit class: "btn btn-primary mt-2"%> + <%= form.submit style: "background: green; color: white; margin-top: 2px;"%> </div> <% end %> |