simple form type time input with simple form code example
Example 1: simple form for rails dates
f.input :start_date, as: :date, html5: true
Example 2: simple form time input
<%= f.input :nap, default: Time.parse('8:00') %>
f.input :start_date, as: :date, html5: true
<%= f.input :nap, default: Time.parse('8:00') %>