shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

skrill.twig (1857B)


      1 <form action="{{ action }}" method="post">
      2   <input type="hidden" name="pay_to_email" value="{{ pay_to_email }}" />
      3   <input type="hidden" name="recipient_description" value="{{ description }}" />
      4   <input type="hidden" name="transaction_id" value="{{ transaction_id }}" />
      5   <input type="hidden" name="return_url" value="{{ return_url }}" />
      6   <input type="hidden" name="cancel_url" value="{{ cancel_url }}" />
      7   <input type="hidden" name="status_url" value="{{ status_url }}" />
      8   <input type="hidden" name="language" value="{{ language }}" />
      9   <input type="hidden" name="logo_url" value="{{ logo }}" />
     10   <input type="hidden" name="pay_from_email" value="{{ pay_from_email }}" />
     11   <input type="hidden" name="firstname" value="{{ firstname }}" />
     12   <input type="hidden" name="lastname" value="{{ lastname }}" />
     13   <input type="hidden" name="address" value="{{ address }}" />
     14   <input type="hidden" name="address2" value="{{ address2 }}" />
     15   <input type="hidden" name="phone_number" value="{{ phone_number }}" />
     16   <input type="hidden" name="postal_code" value="{{ postal_code }}" />
     17   <input type="hidden" name="city" value="{{ city }}" />
     18   <input type="hidden" name="state" value="{{ state }}" />
     19   <input type="hidden" name="country" value="{{ country }}" />
     20   <input type="hidden" name="amount" value="{{ amount }}" />
     21   <input type="hidden" name="currency" value="{{ currency }}" />
     22   <input type="hidden" name="detail1_text" value="{{ detail1_text }}" />
     23   <input type="hidden" name="merchant_fields" value="order_id" />
     24   <input type="hidden" name="order_id" value="{{ order_id }}" />
     25   <input type="hidden" name="platform" value="{{ platform }}" />
     26   <div class="buttons">
     27     <div class="pull-right">
     28       <input type="submit" value="{{ button_confirm }}" class="btn btn-primary" />
     29     </div>
     30   </div>
     31 </form>