<%= form_with url: points_path, method: :get do |f| %>
<%= f.label :start_at, class: "text-sm font-semibold" %> <%= f.datetime_local_field :start_at, class: "rounded-md", value: params[:start_at] %>
<%= f.label :end_at, class: "text-sm font-semibold" %> <%= f.datetime_local_field :end_at, class: "rounded-md", value: params[:end_at] %>
<%= f.submit "Search", class: "px-4 py-2 bg-blue-500 text-white rounded-md" %>
<% end %>