aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/events/_form.html.erb
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-12-17 16:32:09 +0000
committerMatthew Lemon <y@yulqen.org>2023-12-17 16:32:09 +0000
commit86916794341f20b26b9a321f1e15f9521f94a618 (patch)
tree71c9dbdcabb4312d502f2411ea0e90ae1042fe5c /app/views/events/_form.html.erb
parentc84b94a647fb4c068e8be9d0495ff7284f41f168 (diff)
Tidied up the basic event index and form
Diffstat (limited to 'app/views/events/_form.html.erb')
-rw-r--r--app/views/events/_form.html.erb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/events/_form.html.erb b/app/views/events/_form.html.erb
index db05a72..da7f932 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" %>
- <%= form.date_field :date %>
+ <%= form.label :date, style: "display: block", class: "form-label" %>
+ <%= form.date_field :date, class: "form-control" %>
</div>
<div>
- <%= form.label :name, style: "display: block" %>
- <%= form.text_field :name %>
+ <%= form.label :name, style: "display: block", class: "form-label" %>
+ <%= form.text_field :name, class: "form-control" %>
</div>
<div>
- <%= form.submit %>
+ <%= form.submit class: "btn btn-primary mt-2"%>
</div>
<% end %>