mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Update Fleet Premium pricing (#8966)
* update Fleet Premium price * Update new-license.ejs
This commit is contained in:
parent
e9afcc778a
commit
cddf7953e6
4 changed files with 7 additions and 7 deletions
|
|
@ -24,8 +24,8 @@ module.exports = {
|
|||
|
||||
fn: async function ({ numberOfHosts }) {
|
||||
|
||||
// Determine the price, 1 dollar * host * month (Billed anually)
|
||||
let price = 2.00 * numberOfHosts * 12;
|
||||
// Determine the price, 5 dollars * host * month (Billed anually)
|
||||
let price = 5.00 * numberOfHosts * 12;
|
||||
|
||||
let quote = await Quote.create({
|
||||
numberOfHosts: numberOfHosts,
|
||||
|
|
|
|||
2
website/views/pages/customers/dashboard.ejs
vendored
2
website/views/pages/customers/dashboard.ejs
vendored
|
|
@ -74,7 +74,7 @@
|
|||
<div class="row pb-3 mx-0">
|
||||
<div style="max-width: 16px;" class="col-1 px-0"><img style="margin-top: 5px; height: 16px; width: 16px;" src="/images/icon-calendar-32x32@2x.png" alt="A calendar icon"></div>
|
||||
<div class="col pl-3">
|
||||
<p>{{thisSubscription.numberOfHosts}} devices @ $1.00/device/month</p>
|
||||
<p>{{thisSubscription.numberOfHosts}} devices @ ${{thisSubscription.subscriptionPrice / thisSubscription.numberOfHosts / 12}}.00/device/month</p>
|
||||
<p>Billed annually at ${{thisSubscription.subscriptionPrice}}.00/yr</p>
|
||||
<p>Next payment on <js-timestamp :at="thisSubscription.nextBillingAt" always-show-year format="billing"></js-timestamp></p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
<div style="color: #515774;" class="order-last text-left text-sm-right col-12 col-sm-6 pr-0 pl-sm-4 pl-0 pt-sm-4">
|
||||
<p class="small">
|
||||
<strong class="pr-1" style="font-size: 18px; color: #192147">$2.00</strong>/month/device<br>(Billed annually at $24/device)
|
||||
<strong class="pr-1" style="font-size: 18px; color: #192147">$5.00</strong>/month/device<br>(Billed annually at $60/device)
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
<strong>Order total</strong>
|
||||
</div>
|
||||
<div class="ml-auto">
|
||||
<strong>${{(!showQuotedPrice || _.isNaN(formData.numberOfHosts * 24)) ? quotedPrice : formData.numberOfHosts * 24}}.00 /year</strong>
|
||||
<strong>${{(!showQuotedPrice || _.isNaN(formData.numberOfHosts * 5.00 * 12)) ? quotedPrice : formData.numberOfHosts * 5.00 * 12}}.00 /year</strong>
|
||||
</div>
|
||||
</div>
|
||||
<div :class="[showBillingForm ? 'pt-2' : '' ]" v-if="!showBillingForm">
|
||||
|
|
|
|||
4
website/views/pages/pricing.ejs
vendored
4
website/views/pages/pricing.ejs
vendored
|
|
@ -39,10 +39,10 @@
|
|||
<p class="font-weight-bold mb-0">
|
||||
Premium
|
||||
</p>
|
||||
<h2 style="color: #6b6cfa; line-height: 32px;">$2</h2>
|
||||
<h2 style="color: #6b6cfa; line-height: 32px;">$5</h2>
|
||||
<p class="mb-0" style="line-height: 24px;">/host/month</p>
|
||||
<p style="color: #8f8ea1; font-size: 12px; line-height:20px;" class="mb-0">
|
||||
(USD, billed annually at $24)
|
||||
(USD, billed annually at $60)
|
||||
</p>
|
||||
</div>
|
||||
<div style="max-width: 242px;" class="mx-auto mb-4">
|
||||
|
|
|
|||
Loading…
Reference in a new issue