Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. {% extends 'base.html' %}
  2.  
  3. {% block header %}
  4. <h1>{% block title %}Purchase Your VPS{% endblock %}</h1>
  5. {% endblock %}
  6.  
  7. {% for message in get_flashed_messages() %}
  8. <div class="flash">{{ message }}</div>
  9. {% endfor %}
  10.  
  11. {% block content %}
  12. <p>Please send {{ btc_amount }} btc to {{ btc_address }}</p>
  13.  
  14. <img alt="Payment QR Code" src="/static/{{ machine_id }}.jpg">
  15.  
  16. <form action="{{ url_for('main.check_payment') }}" method="post">
  17. <input id="btc_amount" name="btc_amount" type="hidden" value="{{ btc_amount }}">
  18. <input id="=btc_address" name="btc_address" type="hidden" value="{{ btc_address }}">
  19. <input id="machine_id" name="machine_id" type="hidden" value="{{ machine_id }}">
  20. <input type="submit" value="I've paid">
  21. </form>
  22. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement