Skip to content

Instantly share code, notes, and snippets.

@jhsu
Created June 23, 2013 19:18
Show Gist options
  • Select an option

  • Save jhsu/5846184 to your computer and use it in GitHub Desktop.

Select an option

Save jhsu/5846184 to your computer and use it in GitHub Desktop.
stripeHidden = _.template """
<div>
<input type='hidden' name='stripeToken' value='<%= id %>' />
<input type='hidden' name='payment_method[name]' value='<%= name %>' />
<input type='hidden' name='payment_method[last4]' value='<%= last4 %>' />
<input type='hidden' name='payment_method[exp_month]' value='<%= exp_month %>' />
<input type='hidden' name='payment_method[exp_year]' value='<%= exp_year %>' />
</div>
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment