| Line 61... |
Line 61... |
| 61 |
</div>
|
61 |
</div>
|
| 62 |
<label>Amount (In Rs)</label>
|
62 |
<label>Amount (In Rs)</label>
|
| 63 |
<input name="recharge-amt" id="mobile-amount" type="number" class="price" placeholder="" />
|
63 |
<input name="recharge-amt" id="mobile-amount" type="number" class="price" placeholder="" />
|
| 64 |
|
64 |
|
| 65 |
<label>Email Id</label>
|
65 |
<label>Email Id</label>
|
| 66 |
<input id="emailId" name="email" type="email" value="<?php if(isset($email) && !empty($email)) echo $email;?>" onfocus="clearError()"/>
|
66 |
<input id="emailId" name="email" type="email" value="<?php if(isset($email) && !empty($email)) echo $email;?>" onfocus="clearError()" autocorrect="off" autocapitalize="off" autocomplete="off" spellcheck="false"/>
|
| 67 |
|
67 |
|
| 68 |
<input type="submit" value="Recharge" name="submit"/>
|
68 |
<input type="submit" value="Recharge" name="submit"/>
|
| 69 |
</fieldset>
|
69 |
</fieldset>
|
| 70 |
</form><!--mobile-recharge-->
|
70 |
</form><!--mobile-recharge-->
|
| 71 |
<form name="dth-recharge" method="post" action="<?php echo base_url().'confirm'?>"class="dth-recharge" onsubmit="return dthValidation()">
|
71 |
<form name="dth-recharge" method="post" action="<?php echo base_url().'confirm'?>"class="dth-recharge" onsubmit="return dthValidation()">
|
| 72 |
<fieldset>
|
72 |
<fieldset>
|
| 73 |
|
73 |
|
| 74 |
<label>Operator</label>
|
74 |
<label>Operator</label>
|
| 75 |
<select name="operatorId" id="dth-operator" onChange="changeName(event)" onfocus="clearError()">
|
75 |
<select name="operatorId" id="dth-operator" onChange="changeName(event)" onfocus="clearError()">
|
| 76 |
<option value="-1">Select Operator</option>
|
76 |
<option>Select Operator</option>
|
| 77 |
<?php if(isset($dth_operator) && !empty($dth_operator)){
|
77 |
<?php if(isset($dth_operator) && !empty($dth_operator)){
|
| 78 |
foreach($dth_operator as $key => $value){?>
|
78 |
foreach($dth_operator as $key => $value){?>
|
| 79 |
<option value="<?php echo $key;?>"><?php echo $value;?></option>
|
79 |
<option value="<?php echo $key;?>"><?php echo $value;?></option>
|
| 80 |
<?php }}?>
|
80 |
<?php }}?>
|
| 81 |
</select>
|
81 |
</select>
|