style fixes

This commit is contained in:
albert
2011-10-17 00:39:22 -04:00
parent d20f1ee0a4
commit f630365c3b
5 changed files with 11 additions and 9 deletions

View File

@@ -7,10 +7,10 @@
<%= simple_form_for(@user_feedback) do |f| %>
<%= f.input :user_name %>
<%= f.input :category, :collection => ["positive", "neutral", "negative"] %>
<%= f.input :body %>
<%= f.button :submit %>
<%= f.button :submit, :value => "Preview" %>
<%= f.input :category, :collection => ["positive", "neutral", "negative"], :include_blank => false %>
<%= f.input :body, :input_html => {:size => "50x5"} %>
<%= f.button :submit, "Submit" %>
<%= f.button :submit, "Preview" %>
<% end %>
</div>
</div>