New payment
<% if @payment.errors.any? %>
<%= pluralize(@payment.errors.count, "error") %> prohibited this payment from being saved:
<% @payment.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
<%= form_tag('https://www.sandbox.paypal.com/cgi-bin/webscr', {:method => 'post', :authenticity_token => false } ) do %>
<%= hidden_field_tag 'cmd', "_express-checkout" %>
<%= hidden_field_tag 'token', @token %>
<%= submit_tag 'Subscribe Via PayPal', {:id => 'submit_subscription_request', :name => 'submit'} %>
<% end %>
<%= link_to 'Back', payments_path %>