<%= form_for(:model) do |form| %>

<%= form.label :input %> <%= form.text_field :input, :placeholder => 'Enter text here...' %>

<%= form.label :address, :style => 'float: left' %> <%= form.text_area :address, :rows => 3, :cols => 40 %>

<%= form.label :color %>: <%= form.radio_button :color, 'red' %> <%= form.label :red %> <%= form.radio_button :color, 'yellow' %> <%= form.label :yellow %> <%= form.radio_button :color, 'green' %> <%= form.label :green %>

<%= form.label 'condiment' %>: <%= form.check_box :ketchup %> <%= form.label :ketchup %> <%= form.check_box :mustard %> <%= form.label :mustard %> <%= form.check_box :mayonnaise %> <%= form.label :mayonnaise %>

<%= form.label :priority %>: <%= form.select :priority, (1..10) %>

<%= form.label :start %>: <%= form.date_select :start %>

<%= form.label :alarm %>: <%= form.time_select :alarm %>

<% end %>