diff --git a/website/api/controllers/customers/create-quote.js b/website/api/controllers/customers/create-quote.js index 789992a7f2..772c6c7f18 100644 --- a/website/api/controllers/customers/create-quote.js +++ b/website/api/controllers/customers/create-quote.js @@ -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, diff --git a/website/views/pages/customers/dashboard.ejs b/website/views/pages/customers/dashboard.ejs index ceef34d62d..b548dd2958 100644 --- a/website/views/pages/customers/dashboard.ejs +++ b/website/views/pages/customers/dashboard.ejs @@ -74,7 +74,7 @@
{{thisSubscription.numberOfHosts}} devices @ $1.00/device/month
+{{thisSubscription.numberOfHosts}} devices @ ${{thisSubscription.subscriptionPrice / thisSubscription.numberOfHosts / 12}}.00/device/month
Billed annually at ${{thisSubscription.subscriptionPrice}}.00/yr
Next payment on
- $2.00/month/device
(Billed annually at $24/device)
+ $5.00/month/device
(Billed annually at $60/device)
Premium
-/host/month
- (USD, billed annually at $24) + (USD, billed annually at $60)