diff options
author | claucece <soficeli0@gmail.com> | 2015-09-23 23:57:44 -0500 |
---|---|---|
committer | claucece <soficeli0@gmail.com> | 2015-10-05 22:39:31 -0500 |
commit | 577c1f3e92040ab79fcd67b818c7dc8531aaa211 (patch) | |
tree | 56698cbde7812d5e3edbf1a1adcc15f384b3cd92 /engines/billing/app/views/subscriptions/show.html.erb | |
parent | 5a4f0fa64d36df1d60bdd693580e10ce55949b6a (diff) |
add subs_index and start show
Diffstat (limited to 'engines/billing/app/views/subscriptions/show.html.erb')
-rw-r--r-- | engines/billing/app/views/subscriptions/show.html.erb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/engines/billing/app/views/subscriptions/show.html.erb b/engines/billing/app/views/subscriptions/show.html.erb new file mode 100644 index 0000000..f3c730d --- /dev/null +++ b/engines/billing/app/views/subscriptions/show.html.erb @@ -0,0 +1,26 @@ +<script src="https://js.braintreegateway.com/v2/braintree.js"></script> +<h2 class="mbs">New Subscription +</h2> +<br/> +<%= simple_form_for :subscription, :url => :subscriptions, :id => "checkout-form-#{subscription.id}" do |f| %> + <input name="plan_id" type="hidden" value="<%= subscription.id %>"></input> + <% if current_user and !current_user.has_payment_info? %> + <%= render 'customer_form'%> + <% end %> + <br/> + <p> Please enter payment details: </p> + <div id="payment-form-<%= subscription.id %>"></div> + <div class="form-actions"> + <%= f.submit t(:choose), :class => 'btn btn-primary' %> + </div> + <script charset="utf-8" type="text/javascript"> + var clientToken = "<%= @client_token %>"; + braintree.setup(clientToken, "dropin", { + container: "payment-form-#{subscription.id}", + coinbase: { container: "coinbase-container-id" } + }); + </script> + <% end %> +<div id="payment-form"></div> +<div id="coinbase-container-id"></div> + |