{% extends 'base.html' %} {% block content %}

Submit Payment Proof

{{ form.hidden_tag() }}
{{ form.account_id(id="paymentMethod") }} Select the payment method you used
{{ form.amount(step='0.01') }} Amount you paid
{{ form.reference_id(placeholder="e.g., UPI123456789, TXN987654321") }} Bank/UPI reference number or transaction ID
{{ form.screenshot_file(accept="image/*") }} Upload screenshot image (JPG, PNG, etc.)
{{ form.screenshot_link(placeholder="https://example.com/screenshot.jpg") }} If you prefer to upload to cloud storage first
{{ form.note(placeholder="Any additional information about the payment") }} Optional: Add any relevant details
{{ form.submit(class_='btn-primary') }} Cancel

How to Submit Payment Proof

  1. Make the payment to the selected account using the provided details
  2. Take a screenshot of the payment confirmation or receipt
  3. Upload the screenshot to cloud storage (Google Drive, Dropbox, etc.)
  4. Copy the link and paste it in the screenshot field above
  5. Enter the reference ID from your bank/UPI app
  6. Submit the form - admin will verify and approve your payment
⚠️ Important: Your payment will be marked as pending until admin verifies and approves it. This usually takes 1-2 business days.
{% endblock %}