mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
28 lines
704 B
Text
28 lines
704 B
Text
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')
|
|
|
|
.content.content-alt
|
|
.container
|
|
.row
|
|
.col-md-6.col-md-offset-3
|
|
.card
|
|
.page-header
|
|
h1.text-centered #{translate("update_your_billing_details")}
|
|
#billingDetailsForm #{translate("loading_billing_form")}...
|
|
|
|
|
|
script(type="text/javascript").
|
|
Recurly.config(!{recurlyConfig})
|
|
Recurly.buildBillingInfoUpdateForm({
|
|
target : "#billingDetailsForm",
|
|
successURL : "#{successURL}?_csrf=#{csrfToken}",
|
|
signature : "!{signature}",
|
|
accountCode : "#{user.id}"
|
|
});
|
|
|
|
|
|
|