2014-02-12 05:23:40 -05:00
|
|
|
extends ../layout
|
|
|
|
|
|
|
|
block content
|
|
|
|
- locals.supressDefaultJs = true
|
|
|
|
script(data-main=jsPath+'main.js', src=jsPath+'libs/require.js', baseurl=jsPath)
|
|
|
|
script(src=jsPath+'libs/recurly.min.js')
|
|
|
|
|
2014-07-07 08:43:36 -04:00
|
|
|
.content.content-alt
|
|
|
|
.container
|
|
|
|
.row
|
|
|
|
.col-md-6.col-md-offset-3
|
|
|
|
.card
|
|
|
|
.page-header
|
|
|
|
h1.text-centered Update Your Billing Details
|
|
|
|
#billingDetailsForm Loading billing details form...
|
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2014-07-07 08:43:36 -04:00
|
|
|
script(type="text/javascript").
|
2014-02-12 05:23:40 -05:00
|
|
|
Recurly.config(!{recurlyConfig})
|
|
|
|
Recurly.buildBillingInfoUpdateForm({
|
|
|
|
target : "#billingDetailsForm",
|
|
|
|
successURL : "#{successURL}?_csrf=#{csrfToken}",
|
|
|
|
signature : "!{signature}",
|
|
|
|
accountCode : "#{user.id}"
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|