| 21817 |
kshitij.so |
1 |
<html>
|
|
|
2 |
<head>
|
|
|
3 |
|
|
|
4 |
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
|
|
|
5 |
<link rel="stylesheet" href="css/bootstrap.min.css"/>
|
|
|
6 |
<link rel="stylesheet" type="text/css" href="css/main.css"/>
|
|
|
7 |
<!-- Optional theme -->
|
|
|
8 |
<link rel="stylesheet" href="css/bootstrap-theme.min.css" />
|
|
|
9 |
|
|
|
10 |
<!-- Latest compiled and minified JavaScript -->
|
|
|
11 |
<script src="js/bootstrap.min.js" type="script/javascript"></script>
|
|
|
12 |
<script src="js/bootstrapValidator.js"></script>
|
|
|
13 |
<script src="js/reg.js"></script>
|
|
|
14 |
<script src="js/reqformvalidator.js"></script>
|
|
|
15 |
<script type="text/javascript">
|
|
|
16 |
|
|
|
17 |
$(document).ready(function(){
|
| 21825 |
kshitij.so |
18 |
|
| 21817 |
kshitij.so |
19 |
$("input[name$='bEntity']").click(function() {
|
|
|
20 |
var test1 = $(this).val();
|
|
|
21 |
$(".box").hide();
|
| 21826 |
kshitij.so |
22 |
$('input[name=dinNumber]').each(function(){
|
| 21832 |
rajender |
23 |
$(this).prop('disabled', true);
|
|
|
24 |
});
|
| 21826 |
kshitij.so |
25 |
|
|
|
26 |
var dinNumberInput = $("#sale"+test1+ " input[name=dinNumber]");
|
| 21832 |
rajender |
27 |
if (dinNumberInput.prop('disabled') == true){
|
|
|
28 |
dinNumberInput.prop('disabled', false);
|
|
|
29 |
}
|
| 21817 |
kshitij.so |
30 |
$("#sale" + test1).show();
|
|
|
31 |
});
|
|
|
32 |
});
|
|
|
33 |
</script>
|
|
|
34 |
|
|
|
35 |
<script type="text/javascript">
|
|
|
36 |
$(document).ready(function(){
|
| 21822 |
rajender |
37 |
$("input[name$='bPmpDetail']").click(function() {
|
| 21817 |
kshitij.so |
38 |
var test1 = $(this).val();
|
|
|
39 |
$(".pmp").hide();
|
|
|
40 |
$("#Pmp" + test1).show();
|
|
|
41 |
});
|
|
|
42 |
});
|
|
|
43 |
|
|
|
44 |
</script>
|
|
|
45 |
|
|
|
46 |
<script type="text/javascript">
|
|
|
47 |
$(document).ready(function(){
|
| 21822 |
rajender |
48 |
$("input[name$='shopStatus']").click(function() {
|
| 21817 |
kshitij.so |
49 |
var test1 = $(this).val();
|
| 21832 |
rajender |
50 |
$("#shopsemifurnished, #shopfullfurnished").find("input[type=checkbox]").each(function(){
|
|
|
51 |
$(this).prop('disabled', true);
|
|
|
52 |
});
|
|
|
53 |
|
| 21817 |
kshitij.so |
54 |
$(".status").hide();
|
| 21832 |
rajender |
55 |
$("#shop" + test1).show();
|
|
|
56 |
$("#shop" + test1).find("input[type=checkbox]").prop('disabled', false);
|
|
|
57 |
|
|
|
58 |
|
|
|
59 |
|
|
|
60 |
|
| 21817 |
kshitij.so |
61 |
});
|
|
|
62 |
});
|
|
|
63 |
|
|
|
64 |
</script>
|
|
|
65 |
<script type="text/javascript">
|
|
|
66 |
$(document).ready(function(){
|
| 21822 |
rajender |
67 |
$("input[name$='sellingOnline']").click(function() {
|
| 21817 |
kshitij.so |
68 |
var test1 = $(this).val();
|
|
|
69 |
$(".Names").hide();
|
|
|
70 |
$("#selling" + test1).show();
|
|
|
71 |
});
|
|
|
72 |
});
|
|
|
73 |
|
|
|
74 |
</script>
|
|
|
75 |
|
|
|
76 |
|
|
|
77 |
<script type="text/javascript">
|
|
|
78 |
$(document).ready(function(){
|
| 21832 |
rajender |
79 |
associateValidator();
|
| 21822 |
rajender |
80 |
$("input[name$='insurance']").click(function() {
|
| 21817 |
kshitij.so |
81 |
var test1 = $(this).val();
|
|
|
82 |
$(".doc").hide();
|
|
|
83 |
$("#doc" + test1).show();
|
|
|
84 |
});
|
|
|
85 |
});
|
|
|
86 |
|
|
|
87 |
</script>
|
|
|
88 |
|
|
|
89 |
<script type="text/javascript">
|
|
|
90 |
$(document).ready(function(){
|
|
|
91 |
$("input[name$='loan']").click(function() {
|
|
|
92 |
var test1 = $(this).val();
|
|
|
93 |
$(".document").hide();
|
|
|
94 |
$("#document" + test1).show();
|
|
|
95 |
$("#showHide").show();
|
|
|
96 |
});
|
|
|
97 |
});
|
|
|
98 |
|
|
|
99 |
function queryStringToJSON(queryString) {
|
|
|
100 |
|
|
|
101 |
|
|
|
102 |
var pairs = queryString.split('&');
|
|
|
103 |
var result = {};
|
|
|
104 |
pairs.forEach(function(pair) {
|
|
|
105 |
pair = pair.split('=');
|
|
|
106 |
result[pair[0]] = decodeURIComponent(pair[1] || '');
|
|
|
107 |
|
|
|
108 |
});
|
|
|
109 |
return result;
|
|
|
110 |
}
|
|
|
111 |
|
|
|
112 |
var oResult ={Branchname: "jnkmk",DinNumber: "8327592895",ExperienceinTelecome: "kdnslgrgjemgk",GSTNoDate: "29309238033902",IFSCcode: "kmk",IncomeTaxPanNo: "8384705257029",Insurance: "no",Managementstaff: "9392",MobileNo: "3288702375",North: "",ProprietorAddress: "nsdln",Proprietoremail: "jnefkji",Proprietorowner: "nsja",Proprietorpan: "nsdjak",Proprietorphone: "84u50",ProprietorusineesName: "mnsdvns",RegisteredAddress1: "wz-127 tilak nagar",RegisteredAddress2: "",RegisteredAddress3: "",RegisteredBusinessName: "spice+mobile",accountnumber: "nk",bEntity: "Partnership",bPmpdetail: "Proprietor",bankname: "kmk",businessmodel: "Retailer",city: "delhi",contactemail1: "84300293-92",contactemail2: "",contactname1: "nas+c",contactname2: "",contactno1: "8435092",contactno2: "",descriptionofExistingbusiness: "jsdnkglelr",east: "34",front: "",loan: "yes",location: "shoppingMall",neareststore: "100mtrs",noofemployess: "823u9",ownership: "Rented",partnerAddress1: "",partnerAddress2: "",partnerAddress3: "",partnerAddress4: "",partnerName1: "",partnerName2: "",partnerName3: "",partnerName4: "",partneremail1: "",partneremail2: "",partneremail3: "",partneremail4: "",partnerowner1: "",partnerowner2: "",partnerowner3: "",partnerowner4: "",partnerpan1: "",partnerpan2: "",partnerpan3: "",partnerpan4: "",partnerphone1: "",partnerphone2: "",partnerphone3: "",partnerphone4: "",pincode: "110018",portalName1: "",portalName2: "",portalName3: "",roadsize: "",sellingonline: "no",shareholderAddress1: "",shareholderAddress2: "",shareholderAddress3: "",shareholderAddress4: "",shareholderName1: "",shareholderName2: "",shareholderName3: "",shareholderName4: "",shareholderemail1: "",shareholderemail2: "",shareholderemail3: "",shareholderemail4: "",shareholderowner1: "",shareholderowner2: "",shareholderowner3: "",shareholderowner4: "",shareholderpan1: "",shareholderpan2: "",shareholderpan3: "",shareholderpan4: "",shareholderphone1: "",shareholderphone2: "",shareholderphone3: "",shareholderphone4: "",shopArea: "on",shopAvailbility: "Groundfloor",shopWashroom: "Washroom",shopWater: "Watersupply",shopstatus: "fullfurnished",south: "49",state: "Haryana",storeAddress: "",storename: "",telno: "7597209570",west: "32"}
|
|
|
113 |
|
|
|
114 |
function jQFormSerializeArrToJson(formSerializeArr){
|
|
|
115 |
var jsonObj = {};
|
|
|
116 |
jQuery.map( formSerializeArr, function( n, i ) {
|
|
|
117 |
jsonObj[n.name] = n.value;
|
|
|
118 |
});
|
|
|
119 |
return jsonObj;
|
|
|
120 |
}
|
|
|
121 |
|
|
|
122 |
</script>
|
|
|
123 |
|
| 21826 |
kshitij.so |
124 |
<style>
|
|
|
125 |
.loading-image {
|
|
|
126 |
position: fixed;
|
|
|
127 |
top: 50%;
|
|
|
128 |
left: 50%;
|
|
|
129 |
margin-top: -50px;
|
|
|
130 |
margin-left: -100px;
|
|
|
131 |
z-index: 100;
|
|
|
132 |
}
|
|
|
133 |
</style>
|
|
|
134 |
|
| 21817 |
kshitij.so |
135 |
</head>
|
|
|
136 |
|
|
|
137 |
<body>
|
|
|
138 |
<div class="container">
|
|
|
139 |
<div class="row">
|
|
|
140 |
<div class ="header">
|
| 21834 |
rajender |
141 |
<h3 class="header">HOTSPOT PARTNER STORE</h3>
|
| 21833 |
kshitij.so |
142 |
<h4 class="header">Powered by Profit Mandi (A Unit of Spice Group)</h4>
|
| 21817 |
kshitij.so |
143 |
</div>
|
|
|
144 |
|
|
|
145 |
<div class="header">
|
|
|
146 |
<h5 class="header">APPLICATION FOR REGISTRATION</h5>
|
|
|
147 |
</div>
|
|
|
148 |
<hr />
|
|
|
149 |
|
|
|
150 |
<div class="row">
|
|
|
151 |
<div class="col-sm-8">
|
|
|
152 |
|
|
|
153 |
<form role="form" name="myform" id ="form" enctype="multipart/form-data" data-toggle="validator" novalidate>
|
| 21834 |
rajender |
154 |
<h4 class="page-header">1. Registered Business Name of HSPS (in Block Letters)</h4>
|
| 21817 |
kshitij.so |
155 |
<div class="form-group ">
|
|
|
156 |
|
|
|
157 |
<label for=""></label>
|
| 21822 |
rajender |
158 |
<input type="text" name="registeredBusinessName" id="demo" class="bform" placeholder="Business Name"/>
|
| 21817 |
kshitij.so |
159 |
|
|
|
160 |
|
|
|
161 |
</div>
|
|
|
162 |
|
|
|
163 |
|
|
|
164 |
<h4 class="page-header">2. Registered Address (In Block Letters)</h4>
|
|
|
165 |
|
|
|
166 |
<div class="form-group float-label-control">
|
| 21832 |
rajender |
167 |
<label for="">Line 1</label>
|
|
|
168 |
<input type="text" name ="line1" class="form-control" placeholder="Line 1">
|
| 21817 |
kshitij.so |
169 |
</div>
|
|
|
170 |
<div class="form-group float-label-control">
|
| 21832 |
rajender |
171 |
<label for="">Line 2</label>
|
|
|
172 |
<input type="text" name ="line2"class="form-control" placeholder="Line 2">
|
| 21817 |
kshitij.so |
173 |
</div>
|
|
|
174 |
<div class="form-group float-label-control">
|
| 21832 |
rajender |
175 |
<label for="">Line 3</label>
|
|
|
176 |
<input type="text" name="line3" class="form-control" placeholder="Line 3">
|
| 21817 |
kshitij.so |
177 |
</div>
|
|
|
178 |
<div class="form-group float-label-control">
|
|
|
179 |
<label for="">City</label>
|
|
|
180 |
<input type="text" name="city" class="form-control" placeholder="City">
|
|
|
181 |
</div>
|
| 21832 |
rajender |
182 |
<div class="form-group float-label-control">
|
|
|
183 |
<label for="">District</label>
|
|
|
184 |
<input type="text" name="district" class="form-control" placeholder="District">
|
|
|
185 |
</div>
|
| 21817 |
kshitij.so |
186 |
<div class="form-group float-label-control">
|
|
|
187 |
<label for="">Pincode</label>
|
|
|
188 |
<input type="text" name="pincode" maxlength="6" class="form-control" pattern="[0-9]{6}" title="Please enter correct Pin Code"placeholder="Pincode">
|
|
|
189 |
</div>
|
|
|
190 |
|
|
|
191 |
<div class="form-group float-label-control">
|
|
|
192 |
|
|
|
193 |
<select class="form-control" name = "state" placeholder="State">
|
|
|
194 |
<option value=" ">State</option>
|
|
|
195 |
<option value="Andaman and Nicobar Islands">Andaman and Nicobar Islands</option>
|
|
|
196 |
<option value="Andhra Pradesh">Andhra Pradesh</option>
|
|
|
197 |
<option value="Arunachal Pradesh">Arunachal Pradesh</option>
|
|
|
198 |
<option value="Assam">Assam</option>
|
|
|
199 |
<option value="Bihar">Bihar</option>
|
|
|
200 |
<option value="Chandigarh">Chandigarh</option>
|
|
|
201 |
<option value="Chhattisgarh">Chhattisgarh</option>
|
|
|
202 |
<option value="Dadra and Nagar Haveli">Dadra and Nagar Haveli</option>
|
|
|
203 |
<option value="Daman and Diu">Daman and Diu</option>
|
|
|
204 |
<option value="Delhi">Delhi</option>
|
|
|
205 |
<option value="Goa">Goa</option>
|
|
|
206 |
<option value="Gujarat">Gujarat</option>
|
|
|
207 |
<option value="Haryana">Haryana</option>
|
|
|
208 |
<option value="Himachal Pradesh">Himachal Pradesh</option>
|
|
|
209 |
<option value="Jammu and Kashmir">Jammu and Kashmir</option>
|
|
|
210 |
<option value="Jharkhand">Jharkhand</option>
|
|
|
211 |
<option value="Karnataka">Karnataka</option>
|
|
|
212 |
<option value="Kerala">Kerala</option>
|
|
|
213 |
<option value="Lakshadweep">Lakshadweep</option>
|
|
|
214 |
<option value="Madhya Pradesh">Madhya Pradesh</option>
|
|
|
215 |
<option value="Maharashtra">Maharashtra</option>
|
|
|
216 |
<option value="Manipur">Manipur</option>
|
|
|
217 |
<option value="Meghalaya">Meghalaya</option>
|
|
|
218 |
<option value="Mizoram">Mizoram</option>
|
|
|
219 |
<option value="Nagaland">Nagaland</option>
|
|
|
220 |
<option value="Orissa">Orissa</option>
|
|
|
221 |
<option value="Pondicherry">Pondicherry</option>
|
|
|
222 |
<option value="Punjab">Punjab</option>
|
|
|
223 |
<option value="Rajasthan">Rajasthan</option>
|
|
|
224 |
<option value="Sikkim">Sikkim</option>
|
|
|
225 |
<option value="Tamil Nadu">Tamil Nadu</option>
|
|
|
226 |
<option value="Tripura">Tripura</option>
|
|
|
227 |
<option value="Telangana">Telangana</option>
|
|
|
228 |
<option value="Uttaranchal">Uttaranchal</option>
|
|
|
229 |
<option value="Uttar Pradesh">Uttar Pradesh</option>
|
|
|
230 |
<option value="West Bengal">West Bengal</option>
|
|
|
231 |
</select>
|
|
|
232 |
</div>
|
|
|
233 |
|
| 21832 |
rajender |
234 |
|
| 21817 |
kshitij.so |
235 |
<div class="form-group float-label-control">
|
|
|
236 |
<label for="">Email1</label>
|
| 21822 |
rajender |
237 |
<input type="email" class="form-control" name="registeredEmail1" placeholder="Email1">
|
| 21817 |
kshitij.so |
238 |
</div>
|
| 21834 |
rajender |
239 |
<p>Example:- xyz<strong>.hsps@gmail.com</strong></p>
|
| 21817 |
kshitij.so |
240 |
|
|
|
241 |
|
|
|
242 |
|
|
|
243 |
<div class="form-group float-label-control">
|
|
|
244 |
<label for="">Email2</label>
|
| 21822 |
rajender |
245 |
<input type="email" class="form-control" name="registeredEmail2" placeholder="Email2">
|
| 21832 |
rajender |
246 |
</div>
|
| 21817 |
kshitij.so |
247 |
|
| 21832 |
rajender |
248 |
|
|
|
249 |
<div class="form-group float-label-control">
|
|
|
250 |
<label for="">Mobile</label>
|
|
|
251 |
<input type="text" class="form-control" name="mobile" maxlength = "10" pattern="[0-9]{10}" title="Please enter valid Phone number" placeholder="Mobile">
|
|
|
252 |
</div>
|
|
|
253 |
|
|
|
254 |
<label>Landline</label>
|
|
|
255 |
<div class="form-group Pmpform">
|
|
|
256 |
<input type="text" name="stdcode" maxlength = "4" pattern="[0-9]{10}" title="Please enter valid Phone number" placeholder="STDcode"/>
|
|
|
257 |
|
|
|
258 |
|
|
|
259 |
<input type="text" name="telephone" maxlength = "7" pattern="[0-9]{10}" title="Please enter valid Phone number" placeholder="Telephone"/>
|
|
|
260 |
</div>
|
|
|
261 |
|
|
|
262 |
|
|
|
263 |
|
| 21817 |
kshitij.so |
264 |
<h4 class="page-header">3. Type of Business Entity</h4>
|
|
|
265 |
|
|
|
266 |
<div class="funkyradio">
|
|
|
267 |
|
|
|
268 |
<div class="funkyradio-primary">
|
|
|
269 |
<input type="radio" name="bEntity" id="radio1" value="SaleProprietorship" required>
|
| 21832 |
rajender |
270 |
<label for="radio1">Proprietor</label>
|
| 21817 |
kshitij.so |
271 |
</div>
|
|
|
272 |
<div class="funkyradio-primary">
|
|
|
273 |
<input type="radio" name="bEntity" id="radio2" value="Partnership" required>
|
|
|
274 |
<label for="radio2">Partnership</label>
|
|
|
275 |
</div>
|
|
|
276 |
<div class="funkyradio-primary">
|
|
|
277 |
<input type="radio" name="bEntity" id="radio3" value="PrivateLimitedCompany" required>
|
|
|
278 |
<label for="radio3">Private Limited company</label>
|
|
|
279 |
</div>
|
|
|
280 |
<div class="funkyradio-primary">
|
|
|
281 |
<input type="radio" name="bEntity" id="radio4" value="LimitedLiabilityPartnership" required>
|
|
|
282 |
<label for="radio4">Limited Liability Partnership</label>
|
|
|
283 |
</div>
|
|
|
284 |
</div>
|
|
|
285 |
<div class ="Entity">
|
|
|
286 |
<div class="SaleProprietorship box" id ="saleSaleProprietorship">Upload <strong>Proprietership proof</strong></div>
|
|
|
287 |
<div class="partnership box" id="salePartnership">Upload <strong>Partnership Deed</strong></div>
|
|
|
288 |
</div>
|
|
|
289 |
<div class="limitedcompany box" id="salePrivateLimitedCompany">
|
| 21825 |
kshitij.so |
290 |
<div class="form-group float-label-control">
|
| 21817 |
kshitij.so |
291 |
<label for="">DIN Number</label>
|
| 21826 |
kshitij.so |
292 |
<input type="text" class="form-control" name="dinNumber" disabled placeholder="DIN Number">
|
| 21817 |
kshitij.so |
293 |
</div>Upload <strong>Incorporation certificate,Memorandum & Article of association</strong>
|
|
|
294 |
</div>
|
|
|
295 |
|
|
|
296 |
|
|
|
297 |
<div class="LimitedLiabilityPartnership box" id="saleLimitedLiabilityPartnership">
|
|
|
298 |
|
|
|
299 |
|
|
|
300 |
<div class="form-group float-label-control">
|
|
|
301 |
<label for="">DIN Number</label>
|
| 21826 |
kshitij.so |
302 |
<input type="text" class="form-control" name="dinNumber" disabled placeholder="DIN Number">
|
| 21817 |
kshitij.so |
303 |
</div>Upload <strong>Registration certificate & partnership Deed</strong>
|
|
|
304 |
</div>
|
|
|
305 |
|
|
|
306 |
<div class = "form-group file upload">
|
| 21822 |
rajender |
307 |
<input type="file" accept="application/pdf,image/*" name = "bEntityDoc">
|
| 21817 |
kshitij.so |
308 |
</div>
|
|
|
309 |
|
|
|
310 |
|
|
|
311 |
<h4 class="page-header">4. Goods And Services Tax Number(GST)</h4>
|
|
|
312 |
<div class="Pmpform">
|
|
|
313 |
|
| 21822 |
rajender |
314 |
<input type="text" name="gst" class="bform" placeholder="Goods And Services Tax Number"/>
|
| 21817 |
kshitij.so |
315 |
</div>
|
|
|
316 |
<p>Provide Copy of GST document</p>
|
|
|
317 |
<div class = "file upload">
|
| 21822 |
rajender |
318 |
<input type="file" accept="application/pdf,image/*" name ="gstDoc">
|
| 21817 |
kshitij.so |
319 |
</div>
|
|
|
320 |
|
|
|
321 |
|
| 21832 |
rajender |
322 |
<h4 class="page-header">5. Permanent Account Number(PAN)</h4>
|
| 21817 |
kshitij.so |
323 |
<div class="form-group ">
|
|
|
324 |
|
|
|
325 |
<label for=""></label>
|
| 21822 |
rajender |
326 |
<input type="text" name="pan" maxlength="10" class="bform" placeholder="Permanent Account Number"/></div>
|
| 21832 |
rajender |
327 |
<p>Provide Copy of PAN </p>
|
| 21817 |
kshitij.so |
328 |
|
|
|
329 |
<div class = "form-group file upload">
|
|
|
330 |
|
| 21822 |
rajender |
331 |
<input type="file" accept="application/pdf,image/*" name="panDoc">
|
| 21817 |
kshitij.so |
332 |
</div>
|
|
|
333 |
|
|
|
334 |
|
| 21833 |
kshitij.so |
335 |
<h4 class="page-header">6. Full Details Of Business Entity</h4>
|
| 21817 |
kshitij.so |
336 |
|
|
|
337 |
<div class="funkyradio">
|
|
|
338 |
<div class="funkyradio-primary">
|
| 21822 |
rajender |
339 |
<input type="radio" name="bPmpDetail" id="business1" value="Proprietor" required>
|
| 21817 |
kshitij.so |
340 |
<label for="business1">Proprietor</label>
|
|
|
341 |
</div>
|
|
|
342 |
<div class="funkyradio-primary">
|
| 21822 |
rajender |
343 |
<input type="radio" name="bPmpDetail" id="business2" value="Partners" required>
|
| 21817 |
kshitij.so |
344 |
<label for="business2">Partners</label>
|
|
|
345 |
</div>
|
|
|
346 |
<div class="funkyradio-primary">
|
| 21822 |
rajender |
347 |
<input type="radio" name="bPmpDetail" id="business3" value="Directors" required>
|
| 21817 |
kshitij.so |
348 |
<label for="business3">Directors</label>
|
|
|
349 |
</div>
|
|
|
350 |
</div>
|
|
|
351 |
|
|
|
352 |
<div class="tablecontainer">
|
|
|
353 |
<table class="businessdetail">
|
|
|
354 |
<tr>
|
|
|
355 |
<th class ="PMPName">Name</th>
|
| 21832 |
rajender |
356 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
357 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
358 |
<th class="PMPpan">PAN</th>
|
|
|
359 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
| 21817 |
kshitij.so |
360 |
<th class="PMPemail">Email</th>
|
|
|
361 |
<th class="PMPownership">Share %</th>
|
|
|
362 |
|
|
|
363 |
</tr>
|
|
|
364 |
<tr>
|
|
|
365 |
|
| 21822 |
rajender |
366 |
<td class="form-group"><input type="text" name="proprietorBusineesName"size="25"></td>
|
|
|
367 |
<td class="form-group"><textarea row="3" name="proprietorAddress"></textarea></td>
|
|
|
368 |
<td class="form-group"><input type="text" name="proprietorPhone" maxlength="10" pattern="[0-9]{10}"size="10"></th>
|
|
|
369 |
<td class="form-group"><input type="text" name="proprietorPan" maxlength="10" title="Please enter correct pan number"size="10"></td>
|
|
|
370 |
<td class="form-group"><input type="text" name= "proprietorAdhaar" size="15"></td>
|
|
|
371 |
<td class="form-group"><input type="email" name= "proprietorEmail" size="20"></td>
|
|
|
372 |
<td class="form-group"><input type="text" pattern="[0-9]" name="proprietorOwner" size="10"></td>
|
| 21817 |
kshitij.so |
373 |
|
|
|
374 |
</tr>
|
|
|
375 |
|
|
|
376 |
|
|
|
377 |
</table>
|
|
|
378 |
|
|
|
379 |
</div>
|
|
|
380 |
<div class="Partners pmp" id= "PmpPartners">
|
|
|
381 |
<table class="businessdetail">
|
|
|
382 |
|
|
|
383 |
<tr>
|
|
|
384 |
<th class ="PMPName">Name</th>
|
| 21832 |
rajender |
385 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
386 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
387 |
<th class="PMPpan">PAN</th>
|
|
|
388 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
|
|
389 |
<th class="PMPemail">Email</th>
|
| 21817 |
kshitij.so |
390 |
<th class="PMPownership">Share %</th>
|
|
|
391 |
|
|
|
392 |
</tr>
|
|
|
393 |
<tr>
|
|
|
394 |
|
|
|
395 |
<td class="form-group"><input name="partnerName1"type="text" size="25"></td>
|
|
|
396 |
<td class="form-group"><textarea name="partnerAddress1" type="text" size="60"></textarea></td>
|
| 21822 |
rajender |
397 |
<td class="form-group"><input name = "partnerPhone1" pattern="[0-9]{10}"type="text" size="10"></th>
|
|
|
398 |
<td class="form-group"><input name ="partnerPan1"type="text" maxlength = "10" title="Please enter correct pan number"size="10"></td>
|
|
|
399 |
<td class="form-group"><input name="partnerAdhaar1" type="text" size="15"></td>
|
|
|
400 |
<td class="form-group"><input name="partnerEmail1" type="email" size="20"></td>
|
|
|
401 |
<td class="form-group"><input name="partnerOwner1" type="text"pattern="[0-9]"size="10"></td>
|
| 21817 |
kshitij.so |
402 |
|
|
|
403 |
</tr>
|
|
|
404 |
|
|
|
405 |
|
|
|
406 |
</table>
|
|
|
407 |
|
|
|
408 |
<table class="businessdetail">
|
|
|
409 |
|
|
|
410 |
<tr>
|
|
|
411 |
<th class ="PMPName">Name</th>
|
| 21832 |
rajender |
412 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
413 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
414 |
<th class="PMPpan">PAN</th>
|
|
|
415 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
|
|
416 |
<th class="PMPemail">Email</th>
|
| 21817 |
kshitij.so |
417 |
<th class="PMPownership">Share %</th>
|
|
|
418 |
|
|
|
419 |
</tr>
|
|
|
420 |
<tr>
|
|
|
421 |
|
|
|
422 |
<td class="form-group"><input name="partnerName2"type="text" size="25"></td>
|
|
|
423 |
<td class="form-group"><textarea name="partnerAddress2" type="text" size="60"></textarea></td>
|
| 21822 |
rajender |
424 |
<td class="form-group"><input name = "partnerPhone2" pattern="[0-9]{10}" type="text" size="10"></th>
|
|
|
425 |
<td class="businesspan"><input name ="partnerPan2"type="text" maxlength = "10" title="Please enter correct pan number"size="10"></td>
|
|
|
426 |
<td class="form-group"><input name="partnerAdhaar2" type="text" size="15"></td>
|
|
|
427 |
<td class="form-group"><input name="partnerEmail2" type="email" size="20"></td>
|
|
|
428 |
<td class="form-group"><input name="partnerOwner2" pattern="[0-9]" type="text" size="10"></td>
|
| 21817 |
kshitij.so |
429 |
|
|
|
430 |
</tr>
|
|
|
431 |
|
|
|
432 |
</table>
|
|
|
433 |
<table class="businessdetail">
|
|
|
434 |
<tr>
|
| 21832 |
rajender |
435 |
<th class ="PMPName">Name</th>
|
|
|
436 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
437 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
438 |
<th class="PMPpan">PAN</th>
|
|
|
439 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
|
|
440 |
<th class="PMPemail">Email</th>
|
| 21817 |
kshitij.so |
441 |
<th class="PMPownership">Share %</th>
|
|
|
442 |
|
|
|
443 |
</tr>
|
|
|
444 |
<tr>
|
|
|
445 |
|
|
|
446 |
<td class="form-group"><input name="partnerName3"type="text" size="25"></td>
|
|
|
447 |
<td class="form-group"><textarea name="partnerAddress3" type="text" size="60"></textarea></td>
|
| 21822 |
rajender |
448 |
<td class="form-group"><input name = "partnerPhone3" type="text" maxlength = "10" pattern="[0-9]{10}" size="10"></th>
|
|
|
449 |
<td class="form-group"><input name ="partnerPan3"type="text" maxlength = "10" title="Please enter correct pan number"size="10"></td>
|
|
|
450 |
<td class="form-groupr"><input name="partnerAdhaar3" type="text" size="15"></td>
|
|
|
451 |
<td class="form-group"><input name="partnerEmail3" type="email" size="20"></td>
|
|
|
452 |
<td class="form-group"><input name="partnerOwner3" pattern="[0-9" type="text" size="10"></td>
|
| 21817 |
kshitij.so |
453 |
|
|
|
454 |
</tr>
|
|
|
455 |
|
|
|
456 |
|
|
|
457 |
</table>
|
|
|
458 |
|
|
|
459 |
|
|
|
460 |
|
|
|
461 |
<table class="businessdetail">
|
|
|
462 |
<tr>
|
| 21832 |
rajender |
463 |
<th class ="PMPName">Name</th>
|
|
|
464 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
465 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
466 |
<th class="PMPpan">PAN</th>
|
|
|
467 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
|
|
468 |
<th class="PMPemail">Email</th>
|
| 21817 |
kshitij.so |
469 |
<th class="PMPownership">Share %</th>
|
|
|
470 |
</tr>
|
|
|
471 |
<tr>
|
|
|
472 |
|
|
|
473 |
<td class="form-group"><input name="partnerName4"type="text" size="25"></td>
|
|
|
474 |
<td class="form-group"><textarea name="partnerAddress4" type="text" size="60"></textarea></td>
|
| 21822 |
rajender |
475 |
<td class="form-group"><input name = "partnerPhone4" pattern="[0-9]{10}" type="text" size="10"></th>
|
|
|
476 |
<td class="form-group"><input name ="partnerPan4"type="text" maxlength = "10"title="Please enter correct pan number"size="10"></td>
|
|
|
477 |
<td class="form-group"><input name="partnerAdhaar4" type="text" size="15"></td>
|
|
|
478 |
<td class="form-group"><input name="partnerEmail4" type="email" size="20"></td>
|
|
|
479 |
<td class="form-group"><input name="partnerOwner4" pattern="[0-9]" type="text" size="10"></td>
|
| 21817 |
kshitij.so |
480 |
|
|
|
481 |
</tr>
|
|
|
482 |
|
|
|
483 |
|
|
|
484 |
</table>
|
|
|
485 |
|
|
|
486 |
</div>
|
|
|
487 |
|
|
|
488 |
|
|
|
489 |
<div class="Directors pmp" id= "PmpDirectors">
|
|
|
490 |
<table class="businessdetail">
|
|
|
491 |
<tr>
|
| 21832 |
rajender |
492 |
<th class ="PMPName">Name</th>
|
|
|
493 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
494 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
495 |
<th class="PMPpan">PAN</th>
|
|
|
496 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
|
|
497 |
<th class="PMPemail">Email</th>
|
| 21817 |
kshitij.so |
498 |
<th class="PMPownership">Share %</th>
|
|
|
499 |
|
|
|
500 |
</tr>
|
|
|
501 |
<tr>
|
|
|
502 |
<td class="form-group"><input name="shareholderName1"type="text" size="25"></td>
|
|
|
503 |
<td class="form-group"><textarea name="shareholderAddress1" type="text" size="60"></textarea></td>
|
| 21822 |
rajender |
504 |
<td class="form-group"><input name = "shareholderPhone1" pattern="[0-9]{10}" type="text" size="10"></th>
|
|
|
505 |
<td class="form-group"><input name ="shareholderPan1"type="text" maxlength = "10" title="Please enter correct pan number"size="10"></td>
|
|
|
506 |
<td class="form-group"><input name="shareholderAdhaar1" type="text" size="15"></td>
|
|
|
507 |
<td class="form-group"><input name="shareholderEmail1" type="email" size="20"></td>
|
|
|
508 |
<td class="form-group"><input name="shareholderOwner1" pattern="[0-9]" type="text" size="10"></td>
|
| 21817 |
kshitij.so |
509 |
|
|
|
510 |
</tr>
|
|
|
511 |
|
|
|
512 |
|
|
|
513 |
</table>
|
|
|
514 |
|
|
|
515 |
<table class="businessdetail">
|
|
|
516 |
<tr>
|
| 21832 |
rajender |
517 |
<th class ="PMPName">Name</th>
|
|
|
518 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
519 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
520 |
<th class="PMPpan">PAN</th>
|
|
|
521 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
|
|
522 |
<th class="PMPemail">Email</th>
|
| 21817 |
kshitij.so |
523 |
<th class="PMPownership">Share %</th>
|
|
|
524 |
</tr>
|
|
|
525 |
<tr>
|
|
|
526 |
<td class="form-group"><input name="shareholderName2"type="text" size="25"></td>
|
|
|
527 |
<td class="form-group"><textarea name="shareholderAddress2" type="text" size="60"></textarea></td>
|
| 21822 |
rajender |
528 |
<td class="form-group"><input name = "shareholderPhone2" pattern="[0-9]{10}" type="text" size="10"></th>
|
|
|
529 |
<td class="form-group"><input name ="shareholderPan2"type="text" maxlength = "10" title="Please enter correct pan number"size="10"></td>
|
|
|
530 |
<td class="form-group"><input name="shareholderAdhaar2" type="text" size="15"></td>
|
|
|
531 |
<td class="form-group"><input name="shareholderEmail2" type="email" size="20"></td>
|
|
|
532 |
<td class="form-group"><input name="shareholderOwner2" pattern="[0-9]" type="text" size="10"></td>
|
| 21817 |
kshitij.so |
533 |
|
|
|
534 |
</tr>
|
|
|
535 |
</table>
|
|
|
536 |
|
|
|
537 |
<table class="businessdetail">
|
|
|
538 |
<tr>
|
| 21832 |
rajender |
539 |
<th class ="PMPName">Name</th>
|
|
|
540 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
541 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
542 |
<th class="PMPpan">PAN</th>
|
|
|
543 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
|
|
544 |
<th class="PMPemail">Email</th>
|
| 21817 |
kshitij.so |
545 |
<th class="PMPownership">Share %</th>
|
|
|
546 |
|
|
|
547 |
</tr>
|
|
|
548 |
<tr>
|
|
|
549 |
<td class="form-group"><input name="shareholderName3"type="text" size="25"></td>
|
|
|
550 |
<td class="form-group"><textarea name="shareholderAddress3" type="text" size="60"></textarea></td>
|
| 21822 |
rajender |
551 |
<td class="form-group"><input name = "shareholderPhone3" pattern="[0-9]{10}" type="text" size="10"></th>
|
|
|
552 |
<td class="form-group"><input name ="shareholderPan3" type="text" maxlength = "10" title="Please enter correct pan number"size="10"></td>
|
|
|
553 |
<td class="form-group"><input name="shareholderAdhaar3" type="text" size="15"></td>
|
|
|
554 |
<td class="form-group"><input name="shareholderEmail3" type="email" size="20"></td>
|
|
|
555 |
<td class="form-group"><input name="shareholderOwner3" pattern="[0-9]" type="text" size="10"></td>
|
| 21817 |
kshitij.so |
556 |
|
|
|
557 |
</tr>
|
|
|
558 |
|
|
|
559 |
</table>
|
|
|
560 |
|
|
|
561 |
<table class="businessdetail">
|
|
|
562 |
<tr>
|
| 21832 |
rajender |
563 |
<th class ="PMPName">Name</th>
|
|
|
564 |
<th class="PMPAddress">Address</th>
|
| 21817 |
kshitij.so |
565 |
<th class="PMPtelno">Mobile</th>
|
| 21832 |
rajender |
566 |
<th class="PMPpan">PAN</th>
|
|
|
567 |
<th class="PMPAdhaar">Aadhaar Number</th>
|
|
|
568 |
<th class="PMPemail">Email</th>
|
| 21817 |
kshitij.so |
569 |
<th class="PMPownership">Share %</th>
|
|
|
570 |
</tr>
|
|
|
571 |
<tr>
|
| 21825 |
kshitij.so |
572 |
<td class="form-group"><input name="shareholderName4" type="text" size="25"></td>
|
| 21817 |
kshitij.so |
573 |
<td class="form-group"><textarea name="shareholderAddress4" type="text" size="60"></textarea></td>
|
| 21825 |
kshitij.so |
574 |
<td class="form-group"><input name = "shareholderPhone4" type="text" pattern="[0-9]{10}" size="10"></th>
|
|
|
575 |
<td class="form-group"><input name ="shareholderPan4" type="text" maxlength = "10" title="Please enter correct pan number"size="10"></td>
|
|
|
576 |
<td class="form-group"><input name="shareholderAdhaar4" type="text" size="15"></td>
|
| 21822 |
rajender |
577 |
<td class="form-group"><input name="shareholderEmail4" type="email" size="20"></td>
|
|
|
578 |
<td class="form-group"><input name="shareholderOwner4" pattern="[0-9]" type="text" size="10"></td>
|
| 21817 |
kshitij.so |
579 |
|
|
|
580 |
</tr>
|
|
|
581 |
|
|
|
582 |
|
|
|
583 |
</table>
|
|
|
584 |
|
|
|
585 |
</div>
|
|
|
586 |
|
| 21834 |
rajender |
587 |
<h4 class="page-header">7. Store Manager Details</h4>
|
| 21817 |
kshitij.so |
588 |
|
|
|
589 |
|
|
|
590 |
<div class="form-group">
|
|
|
591 |
<label for="">Name
|
| 21822 |
rajender |
592 |
<input type="text" name="managerName"placeholder="Name"></label>
|
| 21817 |
kshitij.so |
593 |
<label for="">Mobile
|
| 21822 |
rajender |
594 |
<input type="text" name="managerNo" pattern="[0-9]{10}" title="Please enter Valid Mobile number" placeholder="Mobile No"> </label>
|
| 21817 |
kshitij.so |
595 |
<label for="">Email
|
| 21822 |
rajender |
596 |
<input type="email" name="managerEmail"size="25px" placeholder="Emailid"> </label>
|
| 21817 |
kshitij.so |
597 |
|
|
|
598 |
</div>
|
|
|
599 |
|
|
|
600 |
|
|
|
601 |
<h4 class="page-header">8. Manpower Details</h4>
|
|
|
602 |
|
|
|
603 |
<div class="form-group">
|
|
|
604 |
<label for="">Number of Employees
|
| 21832 |
rajender |
605 |
<input type="text" pattern="[0-9]" name="noOfEmployees"placeholder="Number of Employees"></label>
|
|
|
606 |
<label for="">Number of Management Staff
|
|
|
607 |
<input type="text" pattern="[0-9]" name="managementStaff" placeholder="Management Staff"> </label>
|
| 21817 |
kshitij.so |
608 |
|
|
|
609 |
</div>
|
|
|
610 |
|
|
|
611 |
<h4 class="page-header">9. Experience In Telecom Trade/other Trade (Brand & Product Category)</h4>
|
|
|
612 |
<div class="bcontacts">
|
| 21822 |
rajender |
613 |
<textarea rows="4" name="experienceinTelecome"cols="50" placeholder="Describe yourself here..."></textarea>
|
| 21817 |
kshitij.so |
614 |
</div>
|
|
|
615 |
|
|
|
616 |
<h4 class="page-header">10. Description of Existing Business & Annual Turnover</h4>
|
|
|
617 |
<div class="bcontacts">
|
| 21822 |
rajender |
618 |
<textarea rows="4" name="descriptionofExistingBusiness"cols="50" placeholder="Describe yourself here..."></textarea>
|
| 21817 |
kshitij.so |
619 |
</div>
|
|
|
620 |
<p>Please Provide ITR of last Two years</p>
|
|
|
621 |
<div class = "form-group file upload">
|
| 21822 |
rajender |
622 |
<input type="file" accept="application/pdf,image/*" name ="itrDoc">
|
| 21817 |
kshitij.so |
623 |
</div>
|
|
|
624 |
|
|
|
625 |
|
|
|
626 |
<h4 class="page-header">11.Business Model</h4>
|
|
|
627 |
|
|
|
628 |
<div class="btn-group">
|
|
|
629 |
<label class="btn btn-default">
|
| 21822 |
rajender |
630 |
<input type="radio" name="businessModel" value="Retailer" required>
|
| 21817 |
kshitij.so |
631 |
<span>Retailer</span>
|
|
|
632 |
</label>
|
|
|
633 |
<label class="btn btn-default">
|
| 21822 |
rajender |
634 |
<input type="radio" name="businessModel" value="Distributor" required>
|
| 21817 |
kshitij.so |
635 |
<span>Distributor</span>
|
|
|
636 |
</label>
|
|
|
637 |
<label class="btn btn-default">
|
| 21822 |
rajender |
638 |
<input type="radio" name="businessModel" value="Franchises" required>
|
| 21834 |
rajender |
639 |
<span>Franchise</span>
|
| 21817 |
kshitij.so |
640 |
</label>
|
|
|
641 |
<label class="btn btn-default">
|
| 21822 |
rajender |
642 |
<input type="radio" name="businessModel" value="Other" required>
|
| 21817 |
kshitij.so |
643 |
<span>Other</span>
|
|
|
644 |
</label>
|
|
|
645 |
</div>
|
|
|
646 |
|
|
|
647 |
|
| 21834 |
rajender |
648 |
<h4 class="page-header">12. Selling Online (if yes, please specify Portal Names)</h4>
|
| 21817 |
kshitij.so |
649 |
|
|
|
650 |
<div class="btn-group">
|
|
|
651 |
<label class="btn btn-default">
|
| 21822 |
rajender |
652 |
<input type="radio" name="sellingOnline" value="yes">
|
| 21817 |
kshitij.so |
653 |
<span>Yes</span>
|
|
|
654 |
</label>
|
|
|
655 |
<label class="btn btn-default">
|
| 21822 |
rajender |
656 |
<input type="radio" name="sellingOnline" value="no">
|
| 21817 |
kshitij.so |
657 |
<span>No</span>
|
|
|
658 |
</label>
|
|
|
659 |
</div>
|
|
|
660 |
<div class="form-group portal Names" id = "sellingyes">
|
|
|
661 |
<label>Portal Names</label>
|
|
|
662 |
<input type="text" name="portalName1" size="25">
|
|
|
663 |
<input type="text" name="portalName2" size="25">
|
|
|
664 |
<input type="text" name="portalName3" size="25">
|
|
|
665 |
</div>
|
| 21834 |
rajender |
666 |
<h4 class="page-header">13. Area of Shop(in Sq Feet)</h4>
|
| 21817 |
kshitij.so |
667 |
<div>
|
|
|
668 |
<div class="form-group">
|
|
|
669 |
<label>
|
|
|
670 |
|
|
|
671 |
<input type="number" name="east" placeholder="East(Sq Feet)">
|
|
|
672 |
<input type="number" name="west" placeholder="West(Sq Feet)">
|
| 21822 |
rajender |
673 |
<input type="number" name="north" placeholder="North(Sq Feet)">
|
| 21817 |
kshitij.so |
674 |
</label>
|
|
|
675 |
</div>
|
|
|
676 |
<br>
|
|
|
677 |
<div class="form-group">
|
|
|
678 |
<label>
|
|
|
679 |
|
|
|
680 |
<input type="number" name="south" placeholder="South(Sq Feet)">
|
|
|
681 |
<input type="number" name="front" placeholder="Front(Sq Feet)">
|
| 21822 |
rajender |
682 |
<input type="number" name="roadSize" placeholder="Road Size in Front(Sq Feet)">
|
| 21817 |
kshitij.so |
683 |
|
|
|
684 |
</label>
|
|
|
685 |
</div>
|
|
|
686 |
|
|
|
687 |
</div>
|
|
|
688 |
<div class="shopArea">
|
|
|
689 |
<div class="btn-group">
|
|
|
690 |
<label class="btn btn-default">
|
|
|
691 |
<input type="radio" name="shopArea" value="Singleside">
|
|
|
692 |
<span>Single Side</span>
|
|
|
693 |
</label>
|
|
|
694 |
<label class="btn btn-default">
|
|
|
695 |
<input type="radio" name="shopArea" value"Twoside">
|
|
|
696 |
<span>Two Side</span>
|
|
|
697 |
</label>
|
|
|
698 |
<label class="btn btn-default">
|
|
|
699 |
<input type="radio" name="shopArea" value="Corner">
|
|
|
700 |
<span>Corner</span>
|
|
|
701 |
</label>
|
|
|
702 |
</div>
|
|
|
703 |
</div>
|
|
|
704 |
|
|
|
705 |
|
|
|
706 |
<h4 class="page-header">14. Status of Shop</h4>
|
|
|
707 |
|
|
|
708 |
<div class="btn-group">
|
|
|
709 |
<label class="btn btn-default">
|
| 21822 |
rajender |
710 |
<input type="radio" name="shopStatus" value="semifurnished">
|
| 21817 |
kshitij.so |
711 |
<span>Semi Furnished</span>
|
|
|
712 |
</label>
|
|
|
713 |
<label class="btn btn-default">
|
| 21822 |
rajender |
714 |
<input type="radio" name="shopStatus" value="fullfurnished">
|
| 21828 |
kshitij.so |
715 |
<span>Fully Furnished</span>
|
| 21817 |
kshitij.so |
716 |
</label>
|
|
|
717 |
</div>
|
|
|
718 |
|
|
|
719 |
<div class="checkboxes status" id ="shopsemifurnished">
|
|
|
720 |
<div class="btn btn-default">
|
| 21828 |
kshitij.so |
721 |
<label for="success1" class="btn btn-success">Flooring<input type="checkbox" name="flooring"
|
| 21832 |
rajender |
722 |
value ="flooring" id="success1" class="badgebox"><span class="badge">✓</span></label>
|
| 21834 |
rajender |
723 |
<label for="warning1" class="btn btn-success">Ceiling<input type="checkbox" name="cieling" value="ceiling" id="warning1" class="badgebox"><span class="badge">✓</span></label>
|
| 21832 |
rajender |
724 |
|
|
|
725 |
|
| 21817 |
kshitij.so |
726 |
</div>
|
|
|
727 |
</div>
|
|
|
728 |
|
|
|
729 |
<div class ="checkboxes status" id ="shopfullfurnished">
|
|
|
730 |
<div class="row text-center">
|
| 21826 |
kshitij.so |
731 |
<label for="default" class="btn btn-success">Store <input type="checkbox" name="store" value="yes" id="default" class="badgebox"><span class="badge">✓</span></label>
|
|
|
732 |
<label for="primary" class="btn btn-success">Washroom <input type="checkbox" name="washroom" value="yes" id="primary" class="badgebox"><span class="badge">✓</span></label>
|
|
|
733 |
<label for="info" class="btn btn-success">Water Supply<input type="checkbox" name="waterSupply" value="yes" id="info" class="badgebox"><span class="badge">✓</span></label>
|
|
|
734 |
<label for="success" class="btn btn-success">Electricity<input type="checkbox" name="electricity"
|
|
|
735 |
value ="yes" id="success" class="badgebox"><span class="badge">✓</span></label>
|
|
|
736 |
<label for="warning" class="btn btn-success">Pantry<input type="checkbox" name="pantry" value="yes" id="warning" class="badgebox"><span class="badge">✓</span></label>
|
| 21817 |
kshitij.so |
737 |
</div>
|
|
|
738 |
</div>
|
|
|
739 |
|
|
|
740 |
|
|
|
741 |
<h4 class="page-header">15. Shop Available At</h4>
|
|
|
742 |
|
|
|
743 |
<div class="btn-group">
|
|
|
744 |
<label class="btn btn-default">
|
|
|
745 |
<input type="radio" name="shopAvailbility" value="Basement">
|
|
|
746 |
<span>Basement</span>
|
|
|
747 |
</label>
|
|
|
748 |
<label class="btn btn-default">
|
|
|
749 |
<input type="radio" name="shopAvailbility" value="Groundfloor">
|
|
|
750 |
<span>Ground Floor</span>
|
|
|
751 |
</label>
|
|
|
752 |
<label class="btn btn-default">
|
|
|
753 |
<input type="radio" name="shopAvailbility" value="firstfloor">
|
|
|
754 |
<span>First Floor</span>
|
|
|
755 |
</label>
|
|
|
756 |
|
|
|
757 |
<label class="btn btn-default">
|
|
|
758 |
<input type="radio" name="shopAvailbility" value="secondfloor">
|
|
|
759 |
<span>Second Floor</span>
|
|
|
760 |
</label>
|
|
|
761 |
|
|
|
762 |
<label class="btn btn-default">
|
|
|
763 |
<input type="radio" name="shopAvailbility" value="thirdfloor">
|
|
|
764 |
<span>Third Floor</span>
|
|
|
765 |
</label>
|
|
|
766 |
</div>
|
|
|
767 |
|
|
|
768 |
<div class="form-group bdetail">
|
| 21834 |
rajender |
769 |
<p>Provide pictures of the shop from 3 different angles, ceiling and flooring</p>
|
| 21822 |
rajender |
770 |
<input type="file" name="angleDoc1" accept="application/pdf,image/*" >
|
|
|
771 |
<input type="file" name="angleDoc2" accept="application/pdf,image/*" >
|
|
|
772 |
<input type="file" name="angleDoc3" accept="application/pdf,image/*" >
|
|
|
773 |
<input type="file" name="angleDoc4" accept="application/pdf,image/*" >
|
|
|
774 |
<input type="file" name="angleDoc5" accept="application/pdf,image/*">
|
| 21817 |
kshitij.so |
775 |
</div>
|
|
|
776 |
|
|
|
777 |
<h4 class="page-header">16. Location of Shop</h4>
|
|
|
778 |
<div class="btn-group">
|
|
|
779 |
<label class="btn btn-default">
|
|
|
780 |
<input type="radio" name="location" value="shoppingMall">
|
|
|
781 |
<span>Shopping Mall</span>
|
|
|
782 |
</label>
|
|
|
783 |
<label class="btn btn-default">
|
|
|
784 |
<input type="radio" name="location" value="MainMobileMarket">
|
|
|
785 |
<span>Main Mobile Market</span>
|
|
|
786 |
</label>
|
|
|
787 |
<label class="btn btn-default">
|
|
|
788 |
<input type="radio" name="location" value="LocalMarket">
|
|
|
789 |
<span>Local Market</span>
|
|
|
790 |
</label>
|
|
|
791 |
|
|
|
792 |
</div>
|
|
|
793 |
|
|
|
794 |
|
|
|
795 |
|
|
|
796 |
<h4 class="page-header">17.Nearest Mobile Store</h4>
|
|
|
797 |
<div class="btn-group">
|
|
|
798 |
<label class="btn btn-default">
|
| 21822 |
rajender |
799 |
<input type="radio" name="nearestStore" value="100mtrs">
|
| 21817 |
kshitij.so |
800 |
<span>100Mtrs</span>
|
|
|
801 |
</label>
|
|
|
802 |
<label class="btn btn-default">
|
| 21822 |
rajender |
803 |
<input type="radio" name="nearestStore" value="200mtrs">
|
| 21817 |
kshitij.so |
804 |
<span>200Mtrs</span>
|
|
|
805 |
</label>
|
|
|
806 |
<label class="btn btn-default">
|
| 21822 |
rajender |
807 |
<input type="radio" name="nearestStore" value="500mtrs">
|
| 21817 |
kshitij.so |
808 |
<span>500Mtrs</span>
|
|
|
809 |
</label>
|
|
|
810 |
|
|
|
811 |
</div>
|
|
|
812 |
|
|
|
813 |
<div class="form-group location">
|
|
|
814 |
<label>Name of the Shop</label>
|
| 21822 |
rajender |
815 |
<input type="text" size ="35" name="storeName">
|
| 21817 |
kshitij.so |
816 |
<br>
|
|
|
817 |
<br>
|
|
|
818 |
<label>Address of the Shop</label>
|
|
|
819 |
<input type="text" size ="65" name="storeAddress">
|
|
|
820 |
</div>
|
|
|
821 |
|
|
|
822 |
|
|
|
823 |
|
| 21834 |
rajender |
824 |
<h4 class="page-header">18. Ownership of Shop</h4>
|
| 21817 |
kshitij.so |
825 |
|
|
|
826 |
<div class="btn-group">
|
|
|
827 |
<label class="btn btn-default">
|
|
|
828 |
<input type="radio" name="ownership" value="Selfowned">
|
|
|
829 |
<span>Self Owned</span>
|
|
|
830 |
</label>
|
|
|
831 |
<label class="btn btn-default">
|
|
|
832 |
<input type="radio" name="ownership" value="Rented">
|
|
|
833 |
<span>Rented</span>
|
|
|
834 |
</label>
|
|
|
835 |
<label class="btn btn-default">
|
|
|
836 |
<input type="radio" name="ownership" value="lease">
|
|
|
837 |
<span>Lease</span>
|
|
|
838 |
</label>
|
|
|
839 |
</label>
|
|
|
840 |
<label class="btn btn-default">
|
|
|
841 |
<input type="radio" name="ownership" value="collaboration">
|
|
|
842 |
<span>Collaboration</span>
|
|
|
843 |
</label>
|
|
|
844 |
|
|
|
845 |
</div>
|
|
|
846 |
|
|
|
847 |
<div class="form-group bdetail">
|
|
|
848 |
<p>Provide relevant documents (Electricity bill/Rent Agreement/Lease Deed)to prove the status of ownership</p>
|
| 21822 |
rajender |
849 |
<input type="file" accept="application/pdf,image/*" name="ownershipDoc">
|
| 21817 |
kshitij.so |
850 |
</div>
|
|
|
851 |
|
|
|
852 |
|
| 21834 |
rajender |
853 |
<h4 class="page-header">19. Insurance of Shop (if yes, please provide the copy of the same)</h4>
|
| 21817 |
kshitij.so |
854 |
|
|
|
855 |
|
|
|
856 |
<div class="btn-group">
|
|
|
857 |
<label class="btn btn-default">
|
| 21822 |
rajender |
858 |
<input type="radio" name="insurance" value="yes">
|
| 21817 |
kshitij.so |
859 |
<span>Yes</span>
|
|
|
860 |
</label>
|
|
|
861 |
<label class="btn btn-default">
|
| 21822 |
rajender |
862 |
<input type="radio" name="insurance" value="no">
|
| 21817 |
kshitij.so |
863 |
<span>No</span>
|
|
|
864 |
</label>
|
|
|
865 |
</div>
|
|
|
866 |
|
|
|
867 |
<div class="form-group insurance doc" id= "docyes">
|
|
|
868 |
<p>Please provide copy of insurance document</p>
|
| 21822 |
rajender |
869 |
<input type="file" accept="application/pdf,image/*" name="insuranceDoc">
|
| 21817 |
kshitij.so |
870 |
</div>
|
|
|
871 |
|
|
|
872 |
|
| 21834 |
rajender |
873 |
<h4 class="page-header">20. Loan on Shop (LAP/BL/CC/others)</h4>
|
| 21817 |
kshitij.so |
874 |
|
|
|
875 |
<div class="btn-group">
|
|
|
876 |
<label class="btn btn-default">
|
|
|
877 |
<input type="radio" name="loan" value="yes">
|
|
|
878 |
<span>Yes</span>
|
|
|
879 |
</label>
|
|
|
880 |
<label class="btn btn-default">
|
|
|
881 |
<input type="radio" name="loan" value="no">
|
|
|
882 |
<span>No</span>
|
|
|
883 |
</label>
|
|
|
884 |
</div>
|
|
|
885 |
|
|
|
886 |
<div class="form-group loan document" id ="documentyes">
|
|
|
887 |
<p>Please provide current statement Letter</p>
|
| 21822 |
rajender |
888 |
<input type="file" accept="application/pdf,image/*" name="loanDoc">
|
| 21817 |
kshitij.so |
889 |
|
|
|
890 |
<p>Please provide current sanction Letter</p>
|
| 21822 |
rajender |
891 |
<input type="file" accept="application/pdf,image/*" name="sanctionDoc">
|
| 21817 |
kshitij.so |
892 |
</div>
|
|
|
893 |
|
|
|
894 |
|
|
|
895 |
<h4 class="page-header">21. Bank Name & Address</h4>
|
|
|
896 |
|
|
|
897 |
<div class="form-group float-label-control">
|
|
|
898 |
<label for="">Account Number</label>
|
| 21822 |
rajender |
899 |
<input type="text" name="accountNumber"class="form-control" placeholder="Account Number">
|
| 21817 |
kshitij.so |
900 |
</div>
|
|
|
901 |
<div class="form-group float-label-control">
|
|
|
902 |
<label for="">Bank Name</label>
|
| 21822 |
rajender |
903 |
<input type="text" name="bankName"class="form-control" placeholder="Bank Name">
|
| 21817 |
kshitij.so |
904 |
</div>
|
|
|
905 |
<div class="form-group float-label-control">
|
|
|
906 |
<label for="">IFSC Code</label>
|
| 21822 |
rajender |
907 |
<input type="text" name="ifscCode"class="form-control" placeholder="IFSC Code">
|
| 21817 |
kshitij.so |
908 |
</div>
|
|
|
909 |
<div class="form-group float-label-control">
|
|
|
910 |
<label for="">Branch Name</label>
|
| 21822 |
rajender |
911 |
<input type="text" name="branchName" class="form-control" placeholder="Branch Name">
|
| 21817 |
kshitij.so |
912 |
</div>
|
|
|
913 |
<div >
|
| 21834 |
rajender |
914 |
<p>Please attach the copy of cancelled cheque</p>
|
| 21817 |
kshitij.so |
915 |
<div class="form-group">
|
| 21822 |
rajender |
916 |
<input type="file" name="chequeCopy" accept="application/pdf,image/*">
|
| 21817 |
kshitij.so |
917 |
</div>
|
|
|
918 |
|
|
|
919 |
|
| 21832 |
rajender |
920 |
<h4 class="page-header">22. HSPS Bank Account Detail</h4>
|
| 21817 |
kshitij.so |
921 |
|
| 21834 |
rajender |
922 |
<p>Please deposit amount of <strong> Rs 1 Lac </strong>as advance payment in following account through NEFT and submit the UTR No.</p>
|
| 21817 |
kshitij.so |
923 |
<div class="form-group float-label-control">
|
|
|
924 |
<label for="">UTR Number</label>
|
|
|
925 |
<input type="text" name="utr" class="form-control" placeholder="UTR No">
|
|
|
926 |
</div>
|
| 21832 |
rajender |
927 |
<p><b>Note:</b> Advance amount deposited shall be adjustable in the first billing. This amount is 100% refundable in case of withdrawl of application by applicant.</p>
|
| 21817 |
kshitij.so |
928 |
|
|
|
929 |
|
|
|
930 |
|
| 21834 |
rajender |
931 |
<div class ="Account">
|
|
|
932 |
<label>Account Name: New Spice Solutions Pvt Ltd</label><br>
|
|
|
933 |
<label>Bank Name: Indusind Bank Ltd.</label><br>
|
|
|
934 |
<label>Account No.:201000488351</label><br>
|
|
|
935 |
<label>Branch:M-56, Greater Kailash-II, Main Market New Delhi-110048</label><br>
|
|
|
936 |
<label>IFSC:INDB0000012</label><br>
|
|
|
937 |
</div>
|
|
|
938 |
|
| 21817 |
kshitij.so |
939 |
<div class="submit">
|
| 21832 |
rajender |
940 |
<button type="submit" class="btn btn-success btn-lg">Submit</button>
|
|
|
941 |
</div>
|
|
|
942 |
|
|
|
943 |
<div class="alert alert-success" role="alert" id="success_message">Success <i class="glyphicon glyphicon-thumbs-up"></i> Thanks for contacting us, we will get back to you shortly.</div>
|
| 21817 |
kshitij.so |
944 |
|
|
|
945 |
|
|
|
946 |
|
|
|
947 |
|
|
|
948 |
<!-- <fieldset hidden disabled="disabled">
|
|
|
949 |
<h4 class="page-header">PMP STORE REGISTRATION APPROVAL</h4>
|
|
|
950 |
<p>(FOR OFFICE USE ONLY)</P>
|
|
|
951 |
|
|
|
952 |
<div class=breg>
|
|
|
953 |
<div class=bApproval>
|
|
|
954 |
|
|
|
955 |
<label>Recommended by</label>
|
|
|
956 |
<input type="text" name = "recommended"class="reg-control" size="50">
|
|
|
957 |
|
|
|
958 |
</div>
|
|
|
959 |
<br>
|
|
|
960 |
|
|
|
961 |
<div class=bApproval>
|
|
|
962 |
<label>Business Manager</label>
|
|
|
963 |
<input type="text" name=" bManager" class="reg-control" size="50">
|
|
|
964 |
</div>
|
|
|
965 |
<br>
|
|
|
966 |
<div class=bApproval>
|
|
|
967 |
<label>Operations Manager</label>
|
|
|
968 |
<input type="text"name="operation"class="reg-control" size="50">
|
|
|
969 |
</div>
|
|
|
970 |
<br>
|
|
|
971 |
<div class=bApproval>
|
|
|
972 |
<label>BusinessHeadCategoryHead</label>
|
|
|
973 |
<input type="text" name="bhead"class="reg-control" size="50">
|
|
|
974 |
</div>
|
|
|
975 |
|
|
|
976 |
|
|
|
977 |
</div>
|
|
|
978 |
</fieldset> -->
|
|
|
979 |
|
|
|
980 |
</form>
|
|
|
981 |
</div>
|
|
|
982 |
</div>
|
|
|
983 |
<div class="col-sm-4">
|
|
|
984 |
<div class="panel panel-default">
|
|
|
985 |
|
|
|
986 |
<div class="panel-body">
|
|
|
987 |
|
|
|
988 |
|
| 21835 |
amit.gupta |
989 |
<label>Spice Global Knowledge Park - 6th Floor, Plot No.19A & 19B, Sector 125, Noida, UP - 201301</label>
|
|
|
990 |
<br>
|
|
|
991 |
<label>Email - care@profitmandi.com</<label>
|
|
|
992 |
<br>
|
|
|
993 |
<label>Contact - 8588842949 </label>
|
| 21817 |
kshitij.so |
994 |
</div>
|
|
|
995 |
</div>
|
|
|
996 |
</div>
|
|
|
997 |
|
|
|
998 |
</div>
|
|
|
999 |
|
|
|
1000 |
</div>
|
| 21826 |
kshitij.so |
1001 |
</div>
|
|
|
1002 |
<div id="ajax-spinner" style="display:none;">
|
| 21832 |
rajender |
1003 |
<img src="images/loading.gif" class="loading-image">
|
|
|
1004 |
</div>
|
| 21817 |
kshitij.so |
1005 |
</body>
|
|
|
1006 |
</html>
|