Subversion Repositories SmartDukaan

Rev

Rev 10873 | Rev 11059 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10873 Rev 11026
Line 22... Line 22...
22
          <div class="c-info">You will be taken to our Bank's payment gateway for making this payment.</div>
22
          <div class="c-info">You will be taken to our Bank's payment gateway for making this payment.</div>
23
          <form id="creditcard" method="post" action="<?php echo base_url().'recharge-pay-options?rechargeOrderId='.$_GET['rechargeOrderId'];?>" onsubmit="return addressValidation(event)">
23
          <form id="creditcard" method="post" action="<?php echo base_url().'recharge-pay-options?rechargeOrderId='.$_GET['rechargeOrderId'];?>" onsubmit="return addressValidation(event)">
24
            <fieldset>
24
            <fieldset>
25
           <div class="c-box clearfix">
25
           <div class="c-box clearfix">
26
            <?php foreach($payment->paymethods as $payment){?>
26
            <?php foreach($payment->paymethods as $payment){?>
27
            <div onclick="selectCard(event)" id="<?php echo $payment->pay_option?>">
27
            <div onclick="selectCard(event)" id="<?php echo $payment->pay_option?>" data-parent="<?php echo $payment->label; ?>">
28
              <img src="<?php echo  $this->config->item('curl_base_url').$payment->img?>;" alt="<?php echo $payment->label;?>">             
28
              <img src="<?php echo  $this->config->item('curl_base_url').$payment->img?>;" alt="<?php echo $payment->label;?>">             
29
            </div>
29
            </div>
30
            <?php } ?>
30
            <?php } ?>
31
            <p class="tcenter">Tap to select your card type</p>
31
            <p class="tcenter">Tap to select your card type</p>
32
          </div><!--in-india-->
32
          </div><!--in-india-->
Line 101... Line 101...
101
          <form id="debitcard" method="post" action="<?php echo base_url().'recharge-pay-options?rechargeOrderId='.$_GET['rechargeOrderId'];?>" onsubmit="return addressValidation(event)">
101
          <form id="debitcard" method="post" action="<?php echo base_url().'recharge-pay-options?rechargeOrderId='.$_GET['rechargeOrderId'];?>" onsubmit="return addressValidation(event)">
102
            <fieldset>
102
            <fieldset>
103
            <input type="hidden" name="payoption" id="pay-debit" value="" />
103
            <input type="hidden" name="payoption" id="pay-debit" value="" />
104
            <div class="c-box">
104
            <div class="c-box">
105
          <?php foreach($payment->paymethods as $methods){?>
105
          <?php foreach($payment->paymethods as $methods){?>
106
          <div id="<?php echo $methods->pay_option;?>" onclick="selectDebitCard(event)"><img src="<?php echo  $this->config->item('curl_base_url').$methods->img?>;" alt="<?php echo $methods->label;?>"></div>
106
          <div id="<?php echo $methods->pay_option;?>" onclick="selectDebitCard(event)" data-parent="<?php echo $payment->label; ?>"><img src="<?php echo  $this->config->item('curl_base_url').$methods->img?>;" alt="<?php echo $methods->label;?>"></div>
107
          <?php } ?>
107
          <?php } ?>
108
          
108
          
109
          <p class="tcenter">Tap to select your card type</p>
109
          <p class="tcenter">Tap to select your card type</p>
110
          </div><!--c-box-->
110
          </div><!--c-box-->
111
          
111