Blame view

pages/registration.html 22.7 KB
19a2e7b14   apple   payment integrate
1

b96c88383   Palak Handa   amount change
2
3
  <div class="header">
    <div>
5734bf6dc   apple   design change
4
      <!-- <img src="images/LOGO.png" class="logojalsa"><span class="jalsaheadr" style="">2018</span> -->
3831d8904   Palak Handa   content changes a...
5
      <!-- <img src="images/SartupJalsa_Logo.png" style="width:200px;position:relative;"> -->
b96c88383   Palak Handa   amount change
6
7
    </div>      
  <div class="clearfix"></div>
74db82750   apple   loader use
8
9
10
  <div class="myLoaderWrap" ng-show="loading">       
     <img  class="ajax-loader" src="images/loader.gif">
  </div>
b96c88383   Palak Handa   amount change
11
12
  </div>
  <!-- CLOSE HEADER -->
74db82750   apple   loader use
13
  <form name="applicantForm">  
b96c88383   Palak Handa   amount change
14
15
     <div class="col-xs-12 col-md-8 col-md-offset-2">
        <div class="form-all">
5734bf6dc   apple   design change
16
           <h4 class="title">General Information</h4>
19a2e7b14   apple   payment integrate
17
           <p></p>
b96c88383   Palak Handa   amount change
18
19
20
21
22
           <!-- <table style="width: 100%;">
              <tr>
                 <td>
                    <div class="step-one-form" > -->
                       <!-- form step 1 -->
3c4db43f3   apple   design new form
23
24
                       <div class="col-xs-12 col-md-8 col-md-offset-2 input-wrapper" >
                          <div class="form-group">
5801d23b2   apple   mandatory field d...
25
26
                             <label>Name: *</label>
                             <input type="name" class="form-control" ng-model="data.name" required>
500aaf838   apple   add new fields & ...
27
28
                          </div>
                          <div class="form-group">
5801d23b2   apple   mandatory field d...
29
30
                             <label>Startup Name: *</label>
                             <input type="text" class="form-control" ng-model="data.startupName" required>
3c4db43f3   apple   design new form
31
32
                           </div>
                           <div class="form-group">
5801d23b2   apple   mandatory field d...
33
                             <label>Phone No: *</label>
97ed79f73   apple   landing page design
34
                             <input type="text" class="form-control" ng-model="data.number" required>
ce1c575fe   apple   validation on upl...
35
                             <!-- <label class="error-message f-family" id="invalidNumber">Please enter only numeric value.</label> -->
3c4db43f3   apple   design new form
36
37
                           </div>
                           <div class="form-group">
5801d23b2   apple   mandatory field d...
38
39
                             <label>Email: *</label>
                             <input type="email" class="form-control" ng-model="data.email" required>
500aaf838   apple   add new fields & ...
40
41
                          </div>
                          <div class="form-group">
7b017db1c   apple   add city field
42
43
44
45
                             <label>City:</label>
                             <input type="text" class="form-control" ng-model="data.city" readonly>
                          </div>
                          <div class="form-group">
500aaf838   apple   add new fields & ...
46
47
48
49
                             <label>Website:</label>
                             <input type="text" class="form-control" ng-model="data.website">
                          </div>
                          <div class="form-group">
5801d23b2   apple   mandatory field d...
50
51
                             <label>Founding Year: *</label>
                             <input type="text" class="form-control" ng-model="data.founder" required>
500aaf838   apple   add new fields & ...
52
53
                          </div>
                          <div class="form-group">
22ff22f2a   Shilpi Saini   add new type
54
                             <label>Type: *</label>
500aaf838   apple   add new fields & ...
55
                             <select class="form-control" ng-model="data.business" required>
22ff22f2a   Shilpi Saini   add new type
56
                                <option name="business" selected disabled value="">Choose type</option>
500aaf838   apple   add new fields & ...
57
58
                                <option value="B2B">B2B</option>
                                <option value="B2C">B2C</option>
3c4db43f3   apple   design new form
59
                             </select>
500aaf838   apple   add new fields & ...
60
                          </div>
87fd7a7ac   Shilpi Saini   change answer
61
                          <div class="form-group">
5801d23b2   apple   mandatory field d...
62
                             <label>Stage: *</label>
3c4db43f3   apple   design new form
63
64
                             <select class="form-control" ng-model="data.stage" required>
                                <option name="stage" selected disabled value="">Choose Startup Stage</option>
39579584e   Shilpi Saini   add new stage
65
                                <option value="Ideation">Ideation</option>
8a14cb2c2   Shilpi Saini   minor change
66
67
                                <option value="POC/Beta">POC/Beta</option>
                                <option value="Revenue">Revenue</option>
3c4db43f3   apple   design new form
68
                             </select>
87fd7a7ac   Shilpi Saini   change answer
69
                          </div>
500aaf838   apple   add new fields & ...
70
                          <div class="form-group">
5801d23b2   apple   mandatory field d...
71
72
                             <label>Sector: *</label>
                             <select class="form-control" ng-model="data.sector" ng-change="GetValue()" required>
500aaf838   apple   add new fields & ...
73
74
75
76
77
78
79
80
81
82
83
84
                                <option name="sector" selected disabled value="">Choose sector</option>
                                <option value="Agriculture">Agriculture</option>
                                <option value="Healthcare">Healthcare</option>
                                <option value="e-Governance">e-Governance</option>
                                <option value="Retail">Retail</option>
                                <option value="Food and Beverages">Food and Beverages</option>
                                <option value="Hardware">Hardware</option>
                                <option value="Software">Software</option>
                                <option value="Media and Entertainment">Media and Entertainment</option>
                                <option value="AI">AI</option>
                                <option value="AR&VR">AR&VR</option>
                                <option value="Automobile">Automobile</option>
3c4db43f3   apple   design new form
85
86
                                <option value="Other">Other</option>
                             </select>
500aaf838   apple   add new fields & ...
87
                          </div>
22ff22f2a   Shilpi Saini   add new type
88
89
90
                          <div class="form-group" ng-if="ngShowhide">
                             <input type="text" class="form-control" ng-model="data.sectorType" placeholder="Other Sector Name">
                          </div>
87fd7a7ac   Shilpi Saini   change answer
91
92
                          <div class="form-group">
                             <label>How did you hear about us? *</label>
22ff22f2a   Shilpi Saini   add new type
93
                             <select class="form-control" ng-model="data.hear" ng-change="getValue()" required>
87fd7a7ac   Shilpi Saini   change answer
94
95
96
97
98
99
100
101
                                <option name="stage" selected disabled value="">Choose Type</option>
                                <option value="Ecells">Ecells</option>
                                <option value="Accelerators/Incubators">Accelerators/Incubators</option>
                                <option value="Facebook">Facebook</option>
                                <option value="Instagram">Instagram</option>
                                <option value="Youtube">Youtube</option>
                                <option value="LinkedIn">LinkedIn</option>
                                <option value="Google">Google</option>
22ff22f2a   Shilpi Saini   add new type
102
                                <option value="Other">Other</option>
87fd7a7ac   Shilpi Saini   change answer
103
104
                             </select>
                          </div>
22ff22f2a   Shilpi Saini   add new type
105
106
                          <div class="form-group" ng-if="ngShow">
                             <input type="text" class="form-control" ng-model="data.otherType" placeholder="Other Type Name">
c70ffa5ac   apple   add one text field
107
                          </div>
a006f2b11   apple   name changes
108
                          <div class="form-group">
97ed79f73   apple   landing page design
109
                             <label>Twitter Pitch: *</label>
8a14cb2c2   Shilpi Saini   minor change
110
                             <textarea type="text" class="form-control" ng-model="data.intro" maxlength="100" placeholder="Give us a brief introduction in two lines(100 characters limit)" rows="3" required></textarea>
a006f2b11   apple   name changes
111
                          </div>
3c4db43f3   apple   design new form
112
                           <div class="form-group">
5801d23b2   apple   mandatory field d...
113
114
                             <label>Revenue: *</label>
                             <textarea type="text" class="form-control" ng-model="data.revenue" placeholder="Are you generating any revenue? If yes, then mention your numbers" rows="3" required></textarea>
3c4db43f3   apple   design new form
115
116
                           </div>
                           <div class="form-group">
5801d23b2   apple   mandatory field d...
117
118
                             <label>Previous Investments: *</label>
                             <textarea type="text" class="form-control" ng-model="data.investment" placeholder="Did you receive any previous investment? If yes, then mention the investment amount and the equity you diluted?" rows="3" required></textarea>
3c4db43f3   apple   design new form
119
120
121
                           </div>
                           <div class="form-group">
                             <label>Coupon Code:</label>
f19bac9a9   Shilpi Saini   integrate coupon ...
122
123
                             <!-- <input type="text" class="form-control" placeholder="If you have a coupon code then apply here"ng-model="data.referalToken"> -->
                             <input type="text" class="form-control" ng-model="data.referalToken" style="position: relative;" placeholder="If you have a coupon code then apply here" ng-required="referalToken" ng-change="changeReferalIconColor(data.referalToken)">
3c4db43f3   apple   design new form
124
125
                             <i class="material-icons coupen-approved" ng-if="tokencheck == true">check</i>
                             <i class="material-icons coupen-approved" style="color:red;"  ng-if="tokencheck == false">close</i>
f19bac9a9   Shilpi Saini   integrate coupon ...
126
                             <button type="button" ng-click="tokenCall(data.referalToken)" class="pull-right apply-coupen-btn">Apply</button>
3c4db43f3   apple   design new form
127
                           </div>
500aaf838   apple   add new fields & ...
128
                           <div class="form-group">
5801d23b2   apple   mandatory field d...
129
                             <label>Attach Pitch Deck: *</label>
ce1c575fe   apple   validation on upl...
130
                             <input type="file" class="form-control-file" valid-file ng-model="data.uploadFile" required id="filePicker" accept=".png, .jpg, .jpeg, .pdf, .ppt">
e7202f14e   apple   validation requir...
131
                             <span ng-show="fileSelect" class=form-group-text>Please Select a File</span>
0c48d68b6   apple   text xhange
132
                          </div>
7b017db1c   apple   add city field
133
134
                          <div class=form-group-text>
                             Fields marked with "<b>*</b>" are mandatory.
500aaf838   apple   add new fields & ...
135
                          </div>
3c4db43f3   apple   design new form
136
                       </div>
ce1c575fe   apple   validation on upl...
137
138
                       <div class="clearfix"></div>
                       <div class="text-center">
466bf74a5   apple   minor change
139
                          <input type="submit" class="btn submit-button-form" style="outline: none;" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()">
ce1c575fe   apple   validation on upl...
140
141
                       </div>
                    </div>
3c4db43f3   apple   design new form
142
                       <!-- <div class="col-xs-12 col-md-6 input-wrapper" >
b96c88383   Palak Handa   amount change
143
144
145
                          <div id="snackbar">Error ! Please fill in all fields.</div>
                          <div class="icon-circle-c">
                             <i class="material-icons" style="line-height: 31px;">person</i>
3b5879e4e   Palak Handa   update design
146
                          </div>
b96c88383   Palak Handa   amount change
147
148
149
150
151
152
                          <input type="text" class="text-input" required  ng-model="data.name" placeholder="Name *" id="myBtn" name="name" ng-change="entername(data.name); firstNamekeyPress(data.name)">
                       </div>
                       <div class="col-xs-12 col-md-6 input-wrapper" >
                          <div id="snackbar">Error ! Please fill in all fields.</div>
                          <div class="icon-circle-d">
                             <i class="material-icons" style="line-height: 30px;">email</i>
ead3256b4   Palak Handa   add and delete im...
153
                          </div>
dee1f7479   Palak Handa   validation use
154
155
                          <input type="email" name="email" ng-pattern="/^[^\s@]+@[^\s@]+\.[^\s@]+$/" class="text-input" required class="" ng-model="data.email" ng-blur="emailcheck(data.email)" ng-focus="removeError()" placeholder="Email Address *" ng-change="enteremail(data.email); emailkeyPress(data.email)">
                          <label class="error-message f-family" id="invalidEmail">Please enter a valid email address.</label>
b96c88383   Palak Handa   amount change
156
157
158
159
                       </div>
                       <div class="col-xs-12 col-md-6 input-wrapper">
                          <div class="icon-circle-f">
                             <i class="material-icons" style="line-height: 30px;">location_city</i>
9cb631be0   Palak Handa   update minor changes
160
                          </div>
b96c88383   Palak Handa   amount change
161
162
163
                          <select ng-model="data.city" ng-change="selectcity(data.city); citykeyPress(data.city)"  style="background-color: #fff; border-radius: 0; font-size: 12px; height: 44px;" required>
                             <option name="city" selected disabled value="">{{data.city}}</option>
                             <option value="Ahmedabad">Ahmedabad</option>
04ffff01c   Palak Handa   minor change
164
                             <option value="Bengaluru">Bengaluru</option>
b96c88383   Palak Handa   amount change
165
166
167
168
169
170
171
172
173
                             <option value="Chennai">Chennai</option>
                             <option value="Delhi">Delhi</option>
                             <option value="Hyderabad">Hyderabad</option>
                             <option value="Jaipur">Jaipur</option>
                             <option value="Kanpur">Kanpur</option>
                             <option value="Kolkata">Kolkata</option>
                             <option value="Mumbai">Mumbai</option>
                          </select>
                       </div>
dee1f7479   Palak Handa   validation use
174
175
176
177
178
179
                       <div class="col-xs-12 col-md-6 input-wrapper" >
                          <div class="icon-circle-e">
                             <i class="material-icons" style="line-height: 30px;">phone</i>
                          </div>
                          <input type="phone" name="phone" ng-pattern="/^\d*(?:\.\d{1,2})?$/" maxlength="10" class="text-input" required class="" ng-model="data.number" ng-blur="numbercheck(data.number)" ng-focus="removeNoError()" placeholder="Mobile No.*" ng-change="enternumber(data.number); phonekeyPress(data.number)">
                          <label class="error-message f-family" id="invalidNumber">Please enter only numeric value.</label>
dee1f7479   Palak Handa   validation use
180
                       </div>
b96c88383   Palak Handa   amount change
181
182
183
                       <div class="col-xs-12 col-md-6 input-wrapper">
                          <div class="icon-circle-i">
                             <i class="material-icons" style="line-height: 30px;">perm_identity</i>
5862d7c8f   Palak Handa   minor change
184
                          </div>
b96c88383   Palak Handa   amount change
185
186
187
188
189
                          <input type="text"  class="text-input" ng-model="data.companyName" placeholder="Company Name *" ng-change="enternumber(data.companyName); companykeyPress(data.companyName)" required>
                       </div>
                       <div class="col-xs-12 col-md-6 input-wrapper">
                          <div class="icon-circle-n">
                             <i class="material-icons" style="line-height: 30px;">web</i>
88dd26b3d   Palak Handa   update
190
                          </div>
b96c88383   Palak Handa   amount change
191
192
193
194
195
                          <input name="website"  class="text-input" ng-model="data.website" placeholder="Website link" ng-change="enterwebsite(data.website); revenuekeyPress(data.website)"></input>
                       </div>
                       <div class="col-xs-12 col-md-6 input-wrapper">
                          <div class="icon-circle-y">
                             <i class="material-icons" style="line-height: 30px;">assignment</i>
321ed3c51   Palak Handa   delete one card
196
                          </div>
b96c88383   Palak Handa   amount change
197
198
                          <select ng-model="data.stage" ng-change="selectechnology(data.stage); fundkeyPress(data.stage)"  style="background-color: #fff; border-radius: 0; font-size: 12px; height: 44px;" required>
                             <option name="stage" selected disabled value="">Choose Startup Stage *</option>
fa4873a39   Avneet Singh   changes made mar...
199
200
                             <option value="Idea">Idea</option>
                             <option value="Prototype">Prototype</option>
3c4db43f3   apple   design new form
201
                   </select>
b96c88383   Palak Handa   amount change
202
203
204
205
                       </div> 
                       <div class="col-xs-12 col-md-6 input-wrapper">
                          <div class="icon-circle-q">
                             <i class="material-icons" style="line-height: 30px;">business</i>
88dd26b3d   Palak Handa   update
206
                          </div>
b96c88383   Palak Handa   amount change
207
208
209
210
                          <select ng-model="data.business" ng-change="selectechnology(data.business); ideakeyPress(data.business)"  style="background-color: #fff; border-radius: 0; font-size: 12px; height: 44px;" required>
                             <option name="business" selected disabled value="">Type of business *</option>
                             <option value="B2B">B2B</option>
                             <option value="B2C">B2C</option>
5291ab1c9   Palak Handa   minor change
211
                             <option value="Other">Other</option>
b96c88383   Palak Handa   amount change
212
213
214
                          </select>
                       </div>
                       <div class="col-xs-12 col-md-12 f-family line-adjust">
79fc299ad   Rohit Saini   changes
215
                          <strong>How many founders/teammates will be attending pitch session? *</strong>
b96c88383   Palak Handa   amount change
216
217
218
219
220
                          <p class="line-space" ></p>
                       </div>
                       <div class="col-xs-12 col-md-12 input-wrapper" >
                          <div class="icon-circle-o">
                             <i class="material-icons" style="line-height: 30px;">confirmation_number</i>
88dd26b3d   Palak Handa   update
221
                          </div>
b96c88383   Palak Handa   amount change
222
223
224
225
226
227
228
                          <select ng-model="data.founder" ng-change="selectfounder(data.founder); discountkeyPress(data.founder)"  style="background-color: #fff; border-radius: 0; font-size: 12px; height: 44px;" required>
                             <option name="founder" selected disabled value="">Choose</option>
                             <option value="1">1</option>
                             <option value="2">2</option>
                             <option value="3">3</option>
                             <option value="more than 3">more than 3</option>
                          </select>
3c4db43f3   apple   design new form
229
                       </div>   -->
fa4873a39   Avneet Singh   changes made mar...
230
  <!--                      <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
231
232
                          <strong>In which city is your startup registered at?</strong>
                          <p class="line-space" ></p>
fa4873a39   Avneet Singh   changes made mar...
233
                       </div> -->
67512023f   Avneet Singh   favicon changed l...
234
                      <!--  <div class="col-xs-12 col-md-12 input-wrapper">
b96c88383   Palak Handa   amount change
235
236
                          <div class="icon-circle-m">
                             <i class="material-icons" style="line-height: 30px;">assessment</i>
88dd26b3d   Palak Handa   update
237
                          </div>
b96c88383   Palak Handa   amount change
238
                          <input type="text" class="text-input" ng-model="data.cityRegister" placeholder="Your Answer.." ng-change="entertechnology(data.cityRegister); annualkeyPress(data.cityRegister)">
67512023f   Avneet Singh   favicon changed l...
239
                       </div> -->
3c4db43f3   apple   design new form
240
                       <!-- <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
241
                          <strong>Give us a brief introduction about your startup. *</strong>
d36d8705e   Palak Handa   delete field
242
                          <p class="line-space" >Kindly write a powerful Twitter Pitch (characters limit - 200).</p>
b96c88383   Palak Handa   amount change
243
244
245
246
                       </div>
                       <div class="col-xs-12 col-md-12 input-wrapper">
                          <div class="icon-circle-x">
                             <i class="material-icons" style="line-height: 30px;">line_weight</i>
88dd26b3d   Palak Handa   update
247
                          </div>
b96c88383   Palak Handa   amount change
248
249
250
251
                          <textarea name="intro" class="text-input textarea" ng-model="data.intro" placeholder="Your Answer.." maxlength="200" ng-change="enterproblem(data.intro); startupNamekeyPress(data.intro)" required></textarea>
                       </div>
                       <div class="col-xs-12 col-md-12 f-family line-adjust">
                          <strong>Who are your customers? *</strong>
d36d8705e   Palak Handa   delete field
252
                          <p class="line-space" >We are looking for a simple and clear answer of who you are selling to (characters limit - 512).</p>
b96c88383   Palak Handa   amount change
253
254
255
256
                       </div>
                       <div class="col-xs-12 col-md-12 input-wrapper">
                          <div class="icon-circle-k">
                             <i class="material-icons" style="line-height: 30px;">help</i>
88dd26b3d   Palak Handa   update
257
                          </div>
7002229c1   Palak Handa   validation char l...
258
                          <textarea name="customer" class="text-input textarea" ng-model="data.customer" placeholder="Your Answer.." maxlength="512" ng-change="entersolution(data.customer); websitekeyPress(data.customer)" required></textarea>
3c4db43f3   apple   design new form
259
                       </div> -->
d36d8705e   Palak Handa   delete field
260
                       <!-- <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
261
262
263
264
265
266
                          <strong>What problem you are solving for them? *</strong>
                          <p class="line-space" >We want to understand how clearly you know the pain point, and how big of a problem it is for the customers.</p>
                       </div>
                       <div class="col-xs-12 col-md-12 input-wrapper f-family">
                          <div class="icon-circle-p">
                             <i class="material-icons" style="line-height: 30px;">business_center</i>
88dd26b3d   Palak Handa   update
267
                          </div>
b96c88383   Palak Handa   amount change
268
269
                          <textarea name="problem" class="text-input textarea" ng-model="data.problem" placeholder="Your Answer.." ng-change="enterbusiness(data.problem); businesskeyPress(data.problem)" required>
                          </textarea>
d36d8705e   Palak Handa   delete field
270
                       </div> -->
371ae3145   Palak Handa   minor change
271
                       <!-- <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
272
273
274
275
276
277
                          <strong>Link your pitch deck presentation. *</strong>
                          <p class="line-space" > Kindly upload the link to your pitch deck (Dropbox/Google Drive, if on google drive make the link open to all).</p>
                       </div>
                       <div class="col-xs-12 col-md-12 input-wrapper f-family">
                          <div class="icon-circle-h">
                             <i class="material-icons" style="line-height: 30px;">web</i>
88dd26b3d   Palak Handa   update
278
                          </div>
b96c88383   Palak Handa   amount change
279
                          <input name="link" class="text-input" ng-pattern="/^(http[s]?:\/\/){0,1}(www\.){0,1}[a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,5}[\.]{0,1}/" ng-blur="emailcheck(data.link)" ng-focus="removeError()" ng-model="data.link" placeholder="link" ng-change="enterbusiness(data.link); linkedInkeyPress(data.link)" required>
3831d8904   Palak Handa   content changes a...
280
                          <label class="error-message f-family" id="invalidEmail">Please enter a valid link.</label>
371ae3145   Palak Handa   minor change
281
                       </div> -->
3c4db43f3   apple   design new form
282
                       <!-- <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
283
                          <strong>Coupon Code.</strong>
fb4e2a053   Palak Handa   minr change
284
                          <p class="line-space" >Only applicable for venue partner ecosystem</p>
b96c88383   Palak Handa   amount change
285
286
287
288
289
290
291
292
293
                       </div>
                       <div class="col-xs-12 input-wrapper">
                          <div class="referel-icon" style="z-index: 999;">
                             <i class="material-icons" style="line-height: 30px;">code</i>
                          </div>
                          <input  class="text-input" ng-model="data.referalToken" placeholder="Enter Coupon code" style="position: relative;" ng-required="referalToken" ng-change="changeReferalIconColor(data.referalToken)">
                          <i class="material-icons coupen-approved" ng-if="tokencheck == true">check</i>
                          <i class="material-icons coupen-approved" style="color:red;"  ng-if="tokencheck == false">close</i>
                          <button type="button" ng-click="tokenCall(data.referalToken)" class="pull-right apply-coupen-btn">Apply</button>
3c4db43f3   apple   design new form
294
                       </div> -->
ce1c575fe   apple   validation on upl...
295
                       <!-- <div class="clearfix"></div> -->
b96c88383   Palak Handa   amount change
296
297
298
299
300
                    <!-- </div> -->
                    <!-- close step-one-form -->
                 <!-- </td>
              </tr>
           </table> -->
ce1c575fe   apple   validation on upl...
301
302
           <!-- <div class="text-center">
              <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid || filePicker" value="Submit" ng-click="submit()">
f91ecfbdf   apple   minor change
303
           </div>
ce1c575fe   apple   validation on upl...
304
        </div> -->
b96c88383   Palak Handa   amount change
305
306
        <!-- CLOSE form-all -->
     <!-- </div> -->
5734bf6dc   apple   design change
307
        <!-- <div class="clearfix"></div>
b96c88383   Palak Handa   amount change
308
309
           <div class="text-center">
              <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()">
5734bf6dc   apple   design change
310
           </div> -->
b96c88383   Palak Handa   amount change
311
312
          </div>
     <!-- col-xs-12 col-md-8 col-md-offset-2 -->
5734bf6dc   apple   design change
313
    <!-- <footer>
b96c88383   Palak Handa   amount change
314
315
316
      <img id="footer" class="img-responsive banner">
        <center class="footer"><a class="footer-link" href="http://www.viithiisys.com/" target="_blank"></a>
        </center>
5734bf6dc   apple   design change
317
    </footer> -->
b96c88383   Palak Handa   amount change
318
319
  </form>
  <!-- CLOSE FORM -->
5291ab1c9   Palak Handa   minor change
320
321
322
323
324
325
326
327
328
  <!-- </div> CLOSE CHECK VIEW -->
  <span ng-show="span == true">
     <span id="chennai"></span>
     <span id="mumbai"></span>
     <span id="hyderabad"></span>
     <span id="kolkata"></span>
     <span id="delhi"></span>
     <span id="ahmedabad"></span>
     <span id="bengaluru"></span>
19a2e7b14   apple   payment integrate
329
     <span id="jaipur"></span>
5291ab1c9   Palak Handa   minor change
330
331
     <span id="kanpur"></span>
     <span id="dharamsala"></span>
7b017db1c   apple   add city field
332
  </span>