fake_payment_page.html 344 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
<html>
<head><title>Payment Form</title></head>
<body>
    <p>Payment page</p>
    <form name="input" action="${callback_url}" method="post">
        % for name, value in post_params.items():
        <input type="hidden" name="${name}" value="${value}">
        % endfor
        <input type="submit" value="Submit">
    </form>
</body>
</html>