<h1>GuestBook Example -- New Comment Page</h1> <%= form_for @comment, :url => { :action => 'display_all' } do |f| %> <p>Name: <%= f.text_field :name, :class => 'ctrl' %></p> <p>Message: <%= f.text_area :message, :class => 'ctrl' %></p> <p><%= f.submit 'Enter Comment' %></p> <% end %>