Blame view

pages/registration.html 18.5 KB
b96c88383   Palak Handa   amount change
1
2
  <div class="header">
    <div>
5734bf6dc   apple   design change
3
      <!-- <img src="images/LOGO.png" class="logojalsa"><span class="jalsaheadr" style="">2018</span> -->
3831d8904   Palak Handa   content changes a...
4
      <!-- <img src="images/SartupJalsa_Logo.png" style="width:200px;position:relative;"> -->
b96c88383   Palak Handa   amount change
5
6
7
8
9
10
11
    </div>      
  <div class="clearfix"></div>
  </div>
  <!-- CLOSE HEADER -->
  <form name="applicantForm">
     <div class="col-xs-12 col-md-8 col-md-offset-2">
        <div class="form-all">
5734bf6dc   apple   design change
12
           <h4 class="title">General Information</h4>
b96c88383   Palak Handa   amount change
13
14
15
16
17
           <!-- <table style="width: 100%;">
              <tr>
                 <td>
                    <div class="step-one-form" > -->
                       <!-- form step 1 -->
3c4db43f3   apple   design new form
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
                       <div class="col-xs-12 col-md-8 col-md-offset-2 input-wrapper" >
                          <div class="form-group">
                             <label>Startup Name:</label>
                             <input type="text" class="form-control" ng-model="data.name">
                           </div>
                           <div class="form-group">
                             <label>Phone No:</label>
                             <input type="number" class="form-control" ng-model="data.number">
                           </div>
                           <div class="form-group">
                             <label>Source:</label>
                             <select class="form-control" ng-model="data.email">
                                <option name="business" selected disabled value="">Type of Source</option>
                                <option value="Pitch Session">Pitch Session</option>
                                <option value="Website">Website</option>
                             </select>
                           </div>
                           <div class="form-group">
                             <label>Stage:</label>
                             <select class="form-control" ng-model="data.stage" required>
                                <option name="stage" selected disabled value="">Choose Startup Stage</option>
                                <option value="Idea">Idea</option>
                                <option value="Prototype">Prototype</option>
                             </select>
                           </div>
                           <div class="form-group">
                             <label>Business Types:</label>
                             <select class="form-control" ng-model="data.business" required>
                                <option name="business" selected disabled value="">Type of business</option>
                                <option value="B2B">B2B</option>
                                <option value="B2C">B2C</option>
                                <option value="Other">Other</option>
                             </select>
                           </div>
                           <div class="form-group">
                             <label>Introduction:</label>
                             <textarea type="text" class="form-control" ng-model="data.intro" rows="3"></textarea>
                           </div>
                           <div class="form-group">
                             <label>Who are your customers?</label>
                             <textarea type="text" class="form-control" ng-model="data.customer" rows="3"></textarea>
                           </div>
                           <div class="form-group">
                             <label>Problem you are solving.</label>
                             <textarea type="text" class="form-control" ng-model="data.problem" rows="3"></textarea>
                           </div>
                           <div class="form-group">
                             <label>Previous Investments:</label>
                             <textarea type="text" class="form-control" ng-model="data.founder" rows="3"></textarea>
                           </div>
                           <div class="form-group">
                             <label>Investment:</label>
                             <input type="text" class="form-control" ng-model="data.web">
                           </div>
                           <div class="form-group">
                             <label>Equity Willing to dilute:</label>
                             <textarea type="text" class="form-control" ng-model="data.city" rows="3"></textarea>
                           </div>
                           <div class="form-group">
                             <label>Coupon Code:</label>
                             <input type="text" class="form-control" ng-model="data.referalToken">
                             <!-- <input type="text" class="form-control" ng-model="data.referalToken" 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> -->
                           </div>
                       </div>
                       <!-- <div class="col-xs-12 col-md-6 input-wrapper" >
b96c88383   Palak Handa   amount change
86
87
88
                          <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
89
                          </div>
b96c88383   Palak Handa   amount change
90
91
92
93
94
95
                          <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...
96
                          </div>
dee1f7479   Palak Handa   validation use
97
98
                          <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
99
100
101
102
                       </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
103
                          </div>
b96c88383   Palak Handa   amount change
104
105
106
                          <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
107
                             <option value="Bengaluru">Bengaluru</option>
b96c88383   Palak Handa   amount change
108
109
110
111
112
113
114
115
116
                             <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
117
118
119
120
121
122
                       <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
123
                       </div>
b96c88383   Palak Handa   amount change
124
125
126
                       <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
127
                          </div>
b96c88383   Palak Handa   amount change
128
129
130
131
132
                          <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
133
                          </div>
b96c88383   Palak Handa   amount change
134
135
136
137
138
                          <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
139
                          </div>
b96c88383   Palak Handa   amount change
140
141
                          <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...
142
143
                             <option value="Idea">Idea</option>
                             <option value="Prototype">Prototype</option>
3c4db43f3   apple   design new form
144
                   </select>
b96c88383   Palak Handa   amount change
145
146
147
148
                       </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
149
                          </div>
b96c88383   Palak Handa   amount change
150
151
152
153
                          <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
154
                             <option value="Other">Other</option>
b96c88383   Palak Handa   amount change
155
156
157
                          </select>
                       </div>
                       <div class="col-xs-12 col-md-12 f-family line-adjust">
79fc299ad   Rohit Saini   changes
158
                          <strong>How many founders/teammates will be attending pitch session? *</strong>
b96c88383   Palak Handa   amount change
159
160
161
162
163
                          <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
164
                          </div>
b96c88383   Palak Handa   amount change
165
166
167
168
169
170
171
                          <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
172
                       </div>   -->
fa4873a39   Avneet Singh   changes made mar...
173
  <!--                      <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
174
175
                          <strong>In which city is your startup registered at?</strong>
                          <p class="line-space" ></p>
fa4873a39   Avneet Singh   changes made mar...
176
                       </div> -->
67512023f   Avneet Singh   favicon changed l...
177
                      <!--  <div class="col-xs-12 col-md-12 input-wrapper">
b96c88383   Palak Handa   amount change
178
179
                          <div class="icon-circle-m">
                             <i class="material-icons" style="line-height: 30px;">assessment</i>
88dd26b3d   Palak Handa   update
180
                          </div>
b96c88383   Palak Handa   amount change
181
                          <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...
182
                       </div> -->
3c4db43f3   apple   design new form
183
                       <!-- <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
184
                          <strong>Give us a brief introduction about your startup. *</strong>
d36d8705e   Palak Handa   delete field
185
                          <p class="line-space" >Kindly write a powerful Twitter Pitch (characters limit - 200).</p>
b96c88383   Palak Handa   amount change
186
187
188
189
                       </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
190
                          </div>
b96c88383   Palak Handa   amount change
191
192
193
194
                          <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
195
                          <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
196
197
198
199
                       </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
200
                          </div>
7002229c1   Palak Handa   validation char l...
201
                          <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
202
                       </div> -->
d36d8705e   Palak Handa   delete field
203
                       <!-- <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
204
205
206
207
208
209
                          <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
210
                          </div>
b96c88383   Palak Handa   amount change
211
212
                          <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
213
                       </div> -->
371ae3145   Palak Handa   minor change
214
                       <!-- <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
215
216
217
218
219
220
                          <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
221
                          </div>
b96c88383   Palak Handa   amount change
222
                          <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...
223
                          <label class="error-message f-family" id="invalidEmail">Please enter a valid link.</label>
371ae3145   Palak Handa   minor change
224
                       </div> -->
3c4db43f3   apple   design new form
225
                       <!-- <div class="col-xs-12 col-md-12 f-family line-adjust">
b96c88383   Palak Handa   amount change
226
                          <strong>Coupon Code.</strong>
fb4e2a053   Palak Handa   minr change
227
                          <p class="line-space" >Only applicable for venue partner ecosystem</p>
b96c88383   Palak Handa   amount change
228
229
230
231
232
233
234
235
236
                       </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
237
                       </div> -->
e6c47cad0   Palak Handa   improve design
238
                       <div class="clearfix"></div>
b96c88383   Palak Handa   amount change
239
240
241
242
243
                    <!-- </div> -->
                    <!-- close step-one-form -->
                 <!-- </td>
              </tr>
           </table> -->
5734bf6dc   apple   design change
244
245
246
           <div class="text-center">
              <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()">
           </div>
b96c88383   Palak Handa   amount change
247
248
249
        </div>
        <!-- CLOSE form-all -->
     <!-- </div> -->
5734bf6dc   apple   design change
250
        <!-- <div class="clearfix"></div>
b96c88383   Palak Handa   amount change
251
252
           <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
253
           </div> -->
b96c88383   Palak Handa   amount change
254
255
          </div>
     <!-- col-xs-12 col-md-8 col-md-offset-2 -->
5734bf6dc   apple   design change
256
    <!-- <footer>
b96c88383   Palak Handa   amount change
257
258
259
      <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
260
    </footer> -->
b96c88383   Palak Handa   amount change
261
262
  </form>
  <!-- CLOSE FORM -->
5291ab1c9   Palak Handa   minor change
263
264
265
266
267
268
269
270
271
272
273
274
275
  <!-- </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>
     <span id="jaipur"></span>kanpur
     <span id="kanpur"></span>
     <span id="dharamsala"></span>
  </span>