Prototype website for VPN service, Bitcoin payments via the Blockchain.info API
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.

24 lines
974 B

10 years ago
  1. {% extends "layout.html" %}
  2. {% block title %}Purchase VPN Service Now - packetcrypt{% endblock %}
  3. {% block content %}
  4. <div id="form-container" class="uk-width-1-2 uk-panel uk-panel-box uk-container-center">
  5. <h4>Purchase PacketCrypt VPN Service</h4>
  6. <ul>
  7. <li>Service in 5 different countries</li>
  8. <li>4 weeks of access</li>
  9. <li>Price (USD): ${{service_price}}</li>
  10. {% if price %}
  11. <li>Price (BTC): {{ price }}</li>
  12. {% endif %}
  13. </ul>
  14. {% if g.user.is_authenticated() %}
  15. <a href="{{url_for('confirm_purchase')}}" class="uk-button uk-button-success">Purchase</a>
  16. <a href="{{url_for('dashboard')}}" class="uk-button uk-button-danger">Cancel</a>
  17. {% else %}
  18. <a href="{{url_for_security('login')}}" class="uk-button uk-button-primary">Login to Purchase</a>
  19. <a href="{{url_for_security('register')}}" class="uk-button uk-button-success">Register an Account</a>
  20. {% endif %}
  21. </div>
  22. {% endblock %}