increase monthly plan to $4

This commit is contained in:
Son NK 2021-04-23 12:08:27 +02:00
parent c5697fbf3c
commit e74dbd7e98
3 changed files with 19 additions and 11 deletions

View File

@ -18,7 +18,7 @@
<div>
<a class="buy-with-crypto" data-custom="{{ current_user.id }}"
href="{{ coinbase_url }}">
Extend for 1 yearly - $30
Extend for 1 year - $30
</a>
<script src="https://commerce.coinbase.com/v1/checkout.js?version=201807">
</script>

View File

@ -90,15 +90,21 @@
(Mastercard, Visa, American Express, etc) and PayPal.
</div>
<button class="btn btn-success" onclick="upgrade({{ PADDLE_MONTHLY_PRODUCT_ID }})">
Monthly <br>
$3/month
<button class="btn btn-primary" onclick="upgrade({{ PADDLE_YEARLY_PRODUCT_ID }})">
Yearly billing
<span class="badge badge-success">Save $18</span>
<br>
<span style="font-size: 18px">
$30/year
</span>
</button>
<button class="btn btn-primary" onclick="upgrade({{ PADDLE_YEARLY_PRODUCT_ID }})">
Yearly <br>
$30/year
</button>
<button class="btn btn-secondary" onclick="upgrade({{ PADDLE_MONTHLY_PRODUCT_ID }})">
Monthly billing <br>
<b>
$4/month
</b>
</button>
<hr>
<i class="fa fa-bitcoin"></i>
@ -108,9 +114,11 @@
</a> <br>
Currently Bitcoin, Bitcoin Cash, Dai, Ethereum, Litecoin and USD Coin are supported. <br>
<a class="btn btn-primary" href="{{ url_for('dashboard.coinbase_checkout_route') }}"
<a class="btn btn-outline-primary" href="{{ url_for('dashboard.coinbase_checkout_route') }}"
target="_blank">
$30/year - Crypto <i class="fe fe-external-link"></i>
Yearly billing - Crypto <br>
$30/year
<i class="fe fe-external-link"></i>
</a>
<hr>

View File

@ -1523,7 +1523,7 @@ class Subscription(db.Model, ModelMixin):
def plan_name(self):
if self.plan == PlanEnum.monthly:
return "Monthly ($3/month)"
return "Monthly ($4/month)"
else:
return "Yearly ($30/year)"