<% -%>

<%= @quickvote ? "Review and Confirm" : "Create QuickVote" %>

<%= error_messages_for 'quickvote' %> <% if @quickvote %>

Please review the data you've entered and confirm it. The candidates for the vote you've submitted include:

<% end %> <%= form_tag :action => 'create' %>


<%= text_field 'quickvote', 'name', :size => 15, :maxsize => 12 %>


<%= text_area 'quickvote', 'description', :cols => 50, :rows => 4 %>


<%= text_area 'quickvote', 'candidatelist', :cols => 50, :rows => 2 %>

<% if @quickvote -%> <%= submit_tag "Confirm" -%> <%= hidden_field :quickvote, :reviewed, :value => 1 %> <% else %> <%= submit_tag "Submit" -%> <%- end -%>

<%= end_form_tag %>