add payment gateway and fix crypto banner

This commit is contained in:
matty 2024-04-02 16:22:32 -04:00
parent 6a168a4b83
commit 63e22059cf
2 changed files with 7 additions and 3 deletions

View File

@ -12,7 +12,7 @@ This plugin allow you to sell storage space to your users using Stripe subscript
Payments are automated with Stripe. Payments are automated with Stripe.
## Getting Started <a name = "getting_started"></a> ## Getting Started <a name = "getting_started"></a>
This is the NCD fork of the [peertube-plugin-orion-sell-storage](https://git.ncd-serv.fr/ncd/Peertube-plugins/src/branch/master/peertube-plugin-ncd-sell-storage) PeerTube plugin. This fork at inception allows you to add five packages rather than the original three. Everything else is pretty much left as-is, unless I decide to work on it more. This is the NCD fork of the [peertube-plugin-orion-sell-storage](https://git.orion-serv.fr/ncd/Peertube-plugins/src/branch/master/peertube-plugin-ncd-sell-storage) PeerTube plugin. This fork at inception allows you to add five packages rather than the original three. Everything else is pretty much left as-is, unless I decide to work on it more.
Check [Prerequisites](#Prerequisites) to install this plugin Check [Prerequisites](#Prerequisites) to install this plugin
### Prerequisites ### Prerequisites

View File

@ -45,9 +45,9 @@ async function showPage({ rootEl, peertubeHelpers }) {
rootEl.innerHTML = ` rootEl.innerHTML = `
<div class="ncd-content text-center"> <div class="ncd-content text-center">
<h1>${await peertubeHelpers.translate("Choose your Storage Plan")}</h1> <h1>${await peertubeHelpers.translate("Choose your Storage Plan")}</h1>
<h4><i>To subscribe to a storage plan with cryptocurrency (BTC, ETH, XMR) or cancel/update your subscription tier, <a href="/about/contact">contact us</a>.</i></h4> <h5><i>To subscribe to a storage plan with cryptocurrency (BTC, ETH, XMR), <a href="/about/contact">contact us</a>.</i></h5>
<!-- <p>${description.length ? description : await peertubeHelpers.translate("You want tu spport us ? Or need more space ? Your in the right place!")}</p> --> <!-- <p>${description.length ? description : await peertubeHelpers.translate("You want tu spport us ? Or need more space ? Your in the right place!")}</p> -->
<div class="mt-5"> <div class="mt-5" style="max-width: 90%; margin: 0 auto;">
<div class="row"> <div class="row">
${(await Promise.all(plans.map(async (plan) => ${(await Promise.all(plans.map(async (plan) =>
`<div class="col-sm-12 col-md-6 col-lg-4" style="margin-bottom: 1rem;"> `<div class="col-sm-12 col-md-6 col-lg-4" style="margin-bottom: 1rem;">
@ -81,6 +81,10 @@ async function showPage({ rootEl, peertubeHelpers }) {
${sub_plan ? ` ${sub_plan ? `
<p><i><b>${await translate("Your current plan")}</b>: ${sub_plan.name}, ${currency}${sub_plan.price} /${await peertubeHelpers.translate("month")}, ${sub_plan.storage} ${await peertubeHelpers.translate("GB Storage")}</i></p> <p><i><b>${await translate("Your current plan")}</b>: ${sub_plan.name}, ${currency}${sub_plan.price} /${await peertubeHelpers.translate("month")}, ${sub_plan.storage} ${await peertubeHelpers.translate("GB Storage")}</i></p>
` : ""} ` : ""}
<div>
<a href="https://billing.stripe.com/p/login/aEUg0YcdE3ff9j2cMM" target="_blank" style="font-size: 1.25rem; background-color: #0083f5; color: white; border-radius: 0.25rem; padding: 0.5rem 0.75rem; margin-top: 0.5rem;">Manage Subcription</a>
<div>
</div> </div>
`; `;