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.

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