snipt/templates/pro.html

26 lines
778 B
HTML
Raw Normal View History

2012-07-03 15:22:48 -07:00
{% extends "base.html" %}
2012-06-26 13:38:38 -07:00
2012-07-03 11:06:06 -07:00
{% block page-title %}Snipt Pro{% endblock %}
2012-06-26 13:38:38 -07:00
2014-05-02 14:36:51 -07:00
{% block body-class %}{{ block.super }} static pro signup{% endblock %}
2012-06-26 13:38:38 -07:00
2012-07-11 23:03:46 -07:00
{% block breadcrumb %}
2014-05-02 14:36:51 -07:00
<li><a href="/pro/">Snipt Pro</a></li>
2012-07-11 23:03:46 -07:00
{% endblock %}
2012-06-26 13:38:38 -07:00
{% block content %}
2014-05-02 14:36:51 -07:00
<div class="info">
Subscribe for only <span>$5/month</span>.
<p class="sub">
We believe the best way to build a superior product is to charge for it.
As a paid Snipt member, you'll have unrestricted access to the app, <a href="/api/">API</a>,
instant chat support, and more.
</p>
{% if request.user.profile.is_pro %}
<h3>You're already a Pro.</h3>
{% else %}
<h4><a href="/pro/signup/" class="btn btn-large btn-success">Subscribe</a></h4>
{% endif %}
</div>
2012-06-26 13:38:38 -07:00
{% endblock %}