You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

243 lines
9.9 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. {% extends "base.html" %}
  2. {% load static compress hc_extras %}
  3. {% block title %}Pricing - It's Free! - {% site_name %}{% endblock %}
  4. {% block description %}
  5. <meta name="description" content="With the Free plan, you can monitor up to 20 services for free. Paid plans lift the limits significantly and are reasonably priced. Special offer for open source projects.">
  6. {% endblock %}
  7. {% block keywords %}
  8. <meta name="keywords" content="healthchecks, cronitor alternative, dead man's snitch alternative, monitor cron jobs free, free cron monitoring, free cron job, free health checks">
  9. {% endblock %}
  10. {% block content %}
  11. <!-- Plans -->
  12. <section id="plans" {% if request.user.is_authenticated %} data- {% endif %}>
  13. <div class="container">
  14. {% if request.user.is_authenticated %}
  15. <div class="row">
  16. <div class="col-md-12">
  17. <div id="subscription-status" class="jumbotron">
  18. <p>
  19. {% if sub.plan_id %}
  20. Your account is currently on the
  21. <strong>{{ sub.plan_name }}</strong>
  22. plan. Thank you for supporting {% site_name %}!
  23. {% else %}
  24. Your account is currently on the
  25. <strong>{{ sub.plan_name|default:"Hobbyist" }}</strong> plan.
  26. {% endif %}
  27. </p>
  28. <p>
  29. {% if sub.plan_id %}
  30. <a class="btn btn-default" href="{% url 'hc-billing' %}">Billing Details</a>
  31. {% else %}
  32. <a class="btn btn-default" href="{% url 'hc-billing' %}">Billing Details and Plan Upgrades</a>
  33. {% endif %}
  34. </p>
  35. </div>
  36. </div>
  37. </div>
  38. {% else %}
  39. <div class="row">
  40. <div class="col-sm-12 text-center">
  41. <h1>{% site_name %} Pricing Plans</h1>
  42. </div>
  43. </div>
  44. {% endif %}
  45. <div class="row">
  46. <div class="col-sm-12" id="period-controls">
  47. <div class="btn-group" data-toggle="buttons">
  48. <label class="btn btn-default">
  49. <input
  50. type="radio"
  51. name="period"
  52. value="monthly"
  53. autocomplete="off"> Monthly
  54. </label>
  55. <label class="btn btn-default active">
  56. <input
  57. type="radio"
  58. name="period"
  59. value="annual"
  60. checked
  61. autocomplete="off"> Annual
  62. </label>
  63. </div>
  64. <p id="annual-note">(20% off on annual plan)</p>
  65. </div>
  66. </div>
  67. <!-- Free -->
  68. <div class="col-sm-4 text-center">
  69. <div class="panel panel-default">
  70. <div class="panel-body text-center free">
  71. <h1>Hobbyist</h1>
  72. <h2>$0<span class="mo">/mo</span></h2>
  73. </div>
  74. <ul class="list-group text-center">
  75. <li class="list-group-item"><i class="fa fa-check"></i> 20 Checks</li>
  76. <li class="list-group-item">3 Team Members</li>
  77. <li class="list-group-item">100 log entries per check</li>
  78. <li class="list-group-item">&nbsp;</li>
  79. <li class="list-group-item">&nbsp;</li>
  80. </ul>
  81. {% if not request.user.is_authenticated %}
  82. <div class="panel-footer">
  83. <a href="#" data-toggle="modal" data-target="#signup-modal" class="btn btn-lg btn-success">Get Started</a>
  84. </div>
  85. {% endif %}
  86. </div>
  87. </div>
  88. <!-- /item -->
  89. <!-- P5 -->
  90. <div class="col-sm-4 text-center">
  91. <div class="panel panel-default">
  92. <div class="panel-body text-center">
  93. <h1>Business</h1>
  94. <h2>
  95. <span id="s-price">$16</span><span class="mo">/mo</span>
  96. </h2>
  97. </div>
  98. <ul class="list-group text-center">
  99. <li class="list-group-item">100 Checks</li>
  100. <li class="list-group-item">10 Team Members</li>
  101. <li class="list-group-item">1000 log entries per check</li>
  102. <li class="list-group-item">50 SMS alerts per month</li>
  103. <li class="list-group-item">Email Support</li>
  104. </ul>
  105. {% if not request.user.is_authenticated %}
  106. <div class="panel-footer">
  107. <a href="#" data-toggle="modal" data-target="#signup-modal" class="btn btn-lg btn-primary">
  108. Get Started
  109. </a>
  110. </div>
  111. {% endif %}
  112. </div>
  113. </div>
  114. <!-- /item -->
  115. <!-- P50 -->
  116. <div class="col-sm-4 text-center">
  117. <div class="panel panel-default">
  118. <div class="panel-body text-center">
  119. <h1>Business Plus</h1>
  120. <h2>
  121. <span id="p-price">$64</span><span class="mo">/mo</span>
  122. </h2>
  123. </div>
  124. <ul class="list-group text-center">
  125. <li class="list-group-item">1000 Checks</li>
  126. <li class="list-group-item">Unlimited Team Members</li>
  127. <li class="list-group-item">1000 log entries per check</li>
  128. <li class="list-group-item">500 SMS alerts per month</li>
  129. <li class="list-group-item">Priority Email Support</li>
  130. </ul>
  131. {% if not request.user.is_authenticated %}
  132. <div class="panel-footer">
  133. <a href="#" data-toggle="modal" data-target="#signup-modal" class="btn btn-lg btn-primary">
  134. Get Started
  135. </a>
  136. </div>
  137. {% endif %}
  138. </div>
  139. </div>
  140. <!-- /item -->
  141. </div>
  142. </section>
  143. <!-- /Plans -->
  144. <section id="faq">
  145. <div class="container">
  146. <div class="row">
  147. <div class="col-sm-6">
  148. <h1>Billing Questions</h1>
  149. <h2>What payment methods do you accept?</h2>
  150. <p>
  151. We accept Visa, Master Card and PayPal.
  152. </p>
  153. <h2>Will my credit card data be safe?</h2>
  154. <p>
  155. We process payments using
  156. <a href="https://braintreepayments.com">Braintree</a>,
  157. a division of PayPal. Your credit card or PayPal
  158. credentials are never directly handled by or
  159. stored on {% site_name %} servers.
  160. </p>
  161. <p>
  162. Braintree is a validated Level 1 PCI DSS Compliant
  163. Service Provider, it is on Visa's Global Compliant
  164. Provider List and MasterCard's SDP List.
  165. <a href="https://www.braintreepayments.com/products-and-features/data-security">Read more…</a>
  166. </p>
  167. <h2>If I cancel my paid plan, do I get a refund?</h2>
  168. <p>
  169. You can easily cancel your subscription at any time, but
  170. no refunds are provided for prorated periods.
  171. </p>
  172. </div>
  173. <div class="col-sm-6">
  174. <h1>Premium Features</h1>
  175. <h2>What's "3 / 10 / Unlimited Team Members"?</h2>
  176. <p>
  177. Invite your colleagues
  178. to your account so they can access your checks,
  179. logs, and configured integrations. Inviting team members
  180. is <strong>more convenient and more secure</strong>
  181. than sharing a single login and password.
  182. </p>
  183. <p>
  184. Each plan has a specific team size limit. When you reach
  185. the limit, you cannot invite more team members.
  186. </p>
  187. <h2>What is the "log entries per check" number?</h2>
  188. <p>
  189. For each of your checks, {% site_name %} keeps a
  190. historic log of the received pings. The log can be useful
  191. for auditing past activity of your cron jobs.
  192. </p>
  193. <p>
  194. There is a per-check limit of how many log entries are
  195. kept. When this limit is reached, the oldest log entries
  196. are culled. You can increase the limit by upgrading to
  197. paid plans.
  198. </p>
  199. <h2>When is 100 log entries per check sufficient?</h2>
  200. <p>
  201. It depends on how frequently your cron job runs and
  202. for what time period you want to keep a log of received
  203. pings. For example, if your cron job runs once a week,
  204. then the 100 log entries will cover 2 years. On the other
  205. hand, if the cron job runs every 5 minutes, then the 100
  206. log entries will only cover 8 hours.
  207. </p>
  208. </div>
  209. </div>
  210. </div>
  211. </section>
  212. {% if not request.user.is_authenticated %}
  213. {% include "front/signup_modal.html" %}
  214. {% endif %}
  215. {% endblock %}
  216. {% block scripts %}
  217. {% compress js %}
  218. <script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
  219. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  220. <script src="{% static 'js/pricing.js' %}"></script>
  221. <script src="{% static 'js/signup.js' %}"></script>
  222. {% endcompress %}
  223. {% endblock %}