Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1.  
  2. <%= form_tag challenge_donations_path(@challenge) do %>
  3. <p>
  4. <%= @user_athlete %> thanks you for helping <%= @npname %>, in their quest for making a better world.
  5. </p>
  6. <p>
  7. Don't forget to visit their website at: <%= @user_website %>
  8. </p>
  9. <p>
  10. There are still <> miles left you can buy.
  11. </p>
  12. <p>
  13. Each of your donations will be for ONE mile.
  14. </p>
  15.  
  16. <script
  17. src="https://checkout.stripe.com/checkout.js"
  18. class="stripe-button"
  19. data-key= "<%= @publishable_key %>"
  20. data-amount= "<%= @amount %>"
  21. data-description= "You are donating to <%= @npname %>"
  22. data-image="<%= image_path('iconsmall2.jpg') %>"
  23. data-name="Mymiles.us"
  24. data-amount="<%= @amount %>"
  25. data-panel-label="Donate">
  26.  
  27. </script>
  28.  
  29. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement