| 13092 |
anikendra |
1 |
<script src="<?=base_url().$this->config->item('current_client')?>/js/fos.js?version=<?php echo time();?><?//=$this->config->item('cdn_version');?>" type="text/javascript"></script>
|
| 12738 |
anikendra |
2 |
<style>
|
|
|
3 |
input[type="checkbox"]{
|
|
|
4 |
float:left;
|
|
|
5 |
appearance:none;
|
|
|
6 |
-webkit-appearance:none;
|
|
|
7 |
width:25px;
|
|
|
8 |
height:25px;
|
|
|
9 |
background:url('../assets/images/checkbox.png')no-repeat center center;
|
|
|
10 |
background-size:contain;
|
|
|
11 |
margin-right:5px;
|
|
|
12 |
}
|
|
|
13 |
input[type="checkbox"]:checked{
|
|
|
14 |
background:url('../assets/images/checkbox_selected.png')no-repeat center center;
|
|
|
15 |
background-size:contain;
|
|
|
16 |
}
|
|
|
17 |
</style>
|
| 12694 |
anikendra |
18 |
<div class="shipping-cont">
|
| 12770 |
anikendra |
19 |
<div id="error" class="error_msg" <?php if(isset($response['msg']) && !empty($response['msg'])){ ?>style="display:block" <?php } else {?> style="display:none" <?php }?>>
|
|
|
20 |
<?php if(isset($response['msg']) && !empty($response['msg'])){
|
|
|
21 |
echo $response['msg'];
|
| 12694 |
anikendra |
22 |
} ?>
|
|
|
23 |
</div>
|
| 13092 |
anikendra |
24 |
<form method="POST" action="<?php echo base_url().'fos/signupcounter';?>" onsubmit="return registerform()" class="address-form">
|
| 12694 |
anikendra |
25 |
<fieldset>
|
| 12738 |
anikendra |
26 |
<label>Outlet Name<span>*</span></label>
|
|
|
27 |
<input type="text" id="countername" name="countername" maxlength="128"/>
|
|
|
28 |
<label>Proprietor Name<span>*</span></label>
|
| 12709 |
anikendra |
29 |
<input type="text" id="name" name="name" maxlength="100"/>
|
| 13092 |
anikendra |
30 |
<label>Tin Number<span>*</span> <input type="checkbox" name="tinskipped" id="tinskipped" value="1" onclick="toggleTinValidity(this)"/></label>
|
| 12709 |
anikendra |
31 |
<input type="text" id="tin" name="tin" maxlength="20"/>
|
| 12694 |
anikendra |
32 |
<label>Address Line 1<span>*</span></label>
|
|
|
33 |
<input type="text" id="line1" name="address1"/>
|
|
|
34 |
<label>Address Line 2</label>
|
|
|
35 |
<input type="text" id="line2" name="address2"/>
|
|
|
36 |
<label>Area</label>
|
|
|
37 |
<input type="text" id="area" name="area"/>
|
|
|
38 |
<label>City<span>*</span></label>
|
|
|
39 |
<select id="city" name="city">
|
|
|
40 |
<option value="Hyderabad">Hyderabad</option>
|
|
|
41 |
<option value="Secunderabad">Secunderabad</option>
|
|
|
42 |
</select>
|
|
|
43 |
<label>State<span>*</span></label>
|
|
|
44 |
<select id="state" name="state">
|
|
|
45 |
<option value="Telangana">Telangana</option>
|
|
|
46 |
</select>
|
|
|
47 |
<label>Pincode<span>*</span></label>
|
| 12709 |
anikendra |
48 |
<input maxlength="6" type="number" id="pin" name="pincode"/>
|
| 12694 |
anikendra |
49 |
<label>Email<span>*</span></label>
|
|
|
50 |
<input type="text" id="email" name="email"/>
|
|
|
51 |
<label>Mobile Number<span>*</span></label>
|
| 12709 |
anikendra |
52 |
<input maxlength="10" type="number" id="phone" name="mobile"/>
|
| 12694 |
anikendra |
53 |
<label>Alternate Mobile Number<span>*</span></label>
|
| 12709 |
anikendra |
54 |
<input maxlength="10" type="number" id="alternatemobile" name="alternatemobile"/>
|
| 12694 |
anikendra |
55 |
<label>DOB</label>
|
| 12709 |
anikendra |
56 |
<input type="date" id="dob" name="dob"/>
|
| 12694 |
anikendra |
57 |
<label>Counter Size (SP)</label>
|
|
|
58 |
<input type="number" id="spcountersize" name="spcountersize"/>
|
|
|
59 |
<label>Counter Size (FP)</label>
|
|
|
60 |
<input type="number" id="fpcountersize" name="fpcountersize"/>
|
| 12738 |
anikendra |
61 |
<input type="checkbox" id="striker" name="striker" value="1"/>
|
| 12694 |
anikendra |
62 |
<label>Striker</label>
|
| 12700 |
anikendra |
63 |
<div class="clearfix"/>
|
| 12694 |
anikendra |
64 |
<input type="submit" name="submit" value="save"/>
|
|
|
65 |
</fieldset>
|
| 12738 |
anikendra |
66 |
</form>
|