Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. <h2 id="payment-method-heading" class="active">
  2. <div class="step-indicator">3</div>
  3. <div class="heading">Payment Method</div>
  4. </h2>
  5. <section style="display: block;" class="accordion-content active" id="payment-method">
  6. <input name="pay_method" value="CC" type="hidden">
  7. <ul class="payment-tabs">
  8. <a href="/checkout/purchase?pay_method=CC"><li class="card active">Credit/Debit Card</li></a>
  9. <a href="/checkout/purchase?pay_method=PPI"><li class="paypal"><img src="/static/checkout/images/paypal.png" alt="PayPal"></li></a>
  10. </ul>
  11.  
  12. <div class="secure-icon">
  13. <div class="secure-left"></div>
  14. <div class="secure-middle"><span>Secure<br>Payment</span></div>
  15. <div class="secure-right"></div>
  16. </div>
  17.  
  18. <!-- card container -->
  19. <div class="card-container active">
  20. <!-- card number -->
  21. <div class="section-error">Failed to authorize: Authorization Failed
  22.  
  23. </div>
  24. <div class="form-group">
  25. <label for="card-number">Credit/Debit Card Number <span class="required">*</span></label>
  26. <input id="card-number" name="tco_customer_cc" autocomplete="off">
  27. <div class="validator"></div>
  28. <div style="display: none;" class="hover-note card-number-hover-note"><span class="arrow"></span><span class="content">Please enter your credit card or debit card number.</span></div>
  29. <div class="error-note card-number-error-note"><span class="arrow"></span><span class="content">Please enter your credit card or debit card number. </span></div>
  30. </div>
  31.  
  32. <!-- exp date -->
  33. <div class="form-group" id="exp-date">
  34. <label for="exp-month">Expiration Date <span class="required">*</span></label>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement