File size: 427 Bytes
72d6194
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
    <head>
        <script src="https://js.stripe.com/v3/"></script>
        <script src="{{ url_for('static', path='script.js') }}"></script>
    </head>
    <body>
        <button id="checkout-premium">Subscribe Premium</button>
        <button id="checkout-basic">Subscribe Basic</button>
        {% if hasCustomer %}
        <button id="manage-billing">Manage Billing</button>
        {% endif %}
    </body>
</html>