Button Behavior Inside a Form
A form is usually associated with a submit button. In Rails, you typically have
a form specified as following: (if use form_for helper)
<%= form_for(@meeting) do |f| %>
<%= render "shared/error", :target => @meeting %>
<div class="panel panel-default">
<…