Skip to content

Commit

Permalink
Merge pull request #2557 from Buttaa/(NOBIDS)-AddEnterprise
Browse files Browse the repository at this point in the history
(NOBIDS) Add "/second" api limit to UI
  • Loading branch information
Buttaa authored Sep 21, 2023
2 parents 8c23486 + 245dedf commit 7224cd7
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion templates/payment/pricing.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,10 @@ <h4 class="my-0 font-weight-normal">Free</h4>
<div class="card-body">
<h1 class="card-title pricing-card-title">0€ <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>
Rate limit per second:<br />
{{ formatAddCommas 5 }}
</li>
<li>
Rate limit per minute:<br />
{{ formatAddCommas 20 }}
Expand All @@ -225,6 +229,10 @@ <h4 class="my-0 font-weight-normal">Sapphire <span class="badge badge-hot">Popul
<div class="card-body">
<h1 class="card-title pricing-card-title">59€* <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>
Rate limit per second:<br />
{{ formatAddCommas 10 }}
</li>
<li>
Rate limit per minute:<br />
{{ formatAddCommas 100 }}
Expand Down Expand Up @@ -266,6 +274,10 @@ <h4 class="my-0 font-weight-normal">Emerald</h4>
<div class="card-body">
<h1 class="card-title pricing-card-title">99€* <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>
Rate limit per second:<br />
{{ formatAddCommas 10 }}
</li>
<li>
Rate limit per minute:<br />
{{ formatAddCommas 600 }}
Expand Down Expand Up @@ -304,6 +316,10 @@ <h4 class="my-0 font-weight-normal">Diamond</h4>
<div class="card-body">
<h1 class="card-title pricing-card-title">399€* <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>
Rate limit per second:<br />
{{ formatAddCommas 30 }}
</li>
<li>
Rate limit per minute:<br />
{{ formatAddCommas 1200 }}
Expand All @@ -314,7 +330,7 @@ <h1 class="card-title pricing-card-title">399€* <small class="text-muted">/ mo
</li>
<li>
Total requests per month:<br />
{{ formatAddCommas 4000000 }}
{{ formatAddCommas 6000000 }}
</li>
</ul>
{{ if .User.Authenticated }}
Expand Down Expand Up @@ -378,6 +394,7 @@ <h1 class="h4 ">Contact us about your API needs</h1>
<option>Sapphire</option>
<option>Emerald</option>
<option>Diamond</option>
<option>Enterprise</option>
</select>
</div>
<div class="form-group">
Expand Down

0 comments on commit 7224cd7

Please sign in to comment.