Commit ba8da5dd0e79ba90327e13dd95999f3bde6ed0e2
1 parent
9454b05783
Exists in
master
add new field
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
pages/registration.html
1 | 1 | ||
2 | <div class="header"> | 2 | <div class="header"> |
3 | <div> | 3 | <div> |
4 | <!-- <img src="images/LOGO.png" class="logojalsa"><span class="jalsaheadr" style="">2018</span> --> | 4 | <!-- <img src="images/LOGO.png" class="logojalsa"><span class="jalsaheadr" style="">2018</span> --> |
5 | <!-- <img src="images/SartupJalsa_Logo.png" style="width:200px;position:relative;"> --> | 5 | <!-- <img src="images/SartupJalsa_Logo.png" style="width:200px;position:relative;"> --> |
6 | </div> | 6 | </div> |
7 | <div class="clearfix"></div> | 7 | <div class="clearfix"></div> |
8 | <div class="myLoaderWrap" ng-show="loading"> | 8 | <div class="myLoaderWrap" ng-show="loading"> |
9 | <img class="ajax-loader" src="images/loader.gif"> | 9 | <img class="ajax-loader" src="images/loader.gif"> |
10 | </div> | 10 | </div> |
11 | </div> | 11 | </div> |
12 | <!-- CLOSE HEADER --> | 12 | <!-- CLOSE HEADER --> |
13 | <form name="applicantForm"> | 13 | <form name="applicantForm"> |
14 | <div class="col-xs-12 col-md-8 col-md-offset-2"> | 14 | <div class="col-xs-12 col-md-8 col-md-offset-2"> |
15 | <div class="form-all"> | 15 | <div class="form-all"> |
16 | <h4 class="title">General Information - Checkout</h4> | 16 | <h4 class="title">General Information - Checkout</h4> |
17 | <p></p> | 17 | <p></p> |
18 | <!-- <table style="width: 100%;"> | 18 | <!-- <table style="width: 100%;"> |
19 | <tr> | 19 | <tr> |
20 | <td> | 20 | <td> |
21 | <div class="step-one-form" > --> | 21 | <div class="step-one-form" > --> |
22 | <!-- form step 1 --> | 22 | <!-- form step 1 --> |
23 | <div class="col-xs-12 col-md-8 col-md-offset-2 input-wrapper" > | 23 | <div class="col-xs-12 col-md-8 col-md-offset-2 input-wrapper" > |
24 | <div class="form-group"> | 24 | <div class="form-group"> |
25 | <label>Name: *</label> | 25 | <label>Name: *</label> |
26 | <input type="name" class="form-control" ng-model="data.name" required> | 26 | <input type="name" class="form-control" ng-model="data.name" required> |
27 | </div> | 27 | </div> |
28 | <div class="form-group"> | 28 | <div class="form-group"> |
29 | <label>Startup Name: *</label> | 29 | <label>Startup Name: *</label> |
30 | <input type="text" class="form-control" ng-model="data.startupName" required> | 30 | <input type="text" class="form-control" ng-model="data.startupName" required> |
31 | </div> | 31 | </div> |
32 | <div class="form-group"> | 32 | <div class="form-group"> |
33 | <label>Phone No: *</label> | 33 | <label>Phone No: *</label> |
34 | <input type="text" class="form-control" ng-model="data.number" required> | 34 | <input type="text" class="form-control" ng-model="data.number" required> |
35 | <!-- <label class="error-message f-family" id="invalidNumber">Please enter only numeric value.</label> --> | 35 | <!-- <label class="error-message f-family" id="invalidNumber">Please enter only numeric value.</label> --> |
36 | </div> | 36 | </div> |
37 | <div class="form-group"> | 37 | <div class="form-group"> |
38 | <label>Email: *</label> | 38 | <label>Email: *</label> |
39 | <input type="email" class="form-control" ng-model="data.email" required> | 39 | <input type="email" class="form-control" ng-model="data.email" required> |
40 | </div> | 40 | </div> |
41 | <div class="form-group"> | 41 | <div class="form-group"> |
42 | <label>City:</label> | 42 | <label>City:</label> |
43 | <input type="text" class="form-control" ng-model="data.city" readonly> | 43 | <input type="text" class="form-control" ng-model="data.city" readonly> |
44 | </div> | 44 | </div> |
45 | <div class="form-group"> | 45 | <div class="form-group"> |
46 | <label>Website:</label> | 46 | <label>Website:</label> |
47 | <input type="text" class="form-control" ng-model="data.website"> | 47 | <input type="text" class="form-control" ng-model="data.website"> |
48 | </div> | 48 | </div> |
49 | <div class="form-group"> | 49 | <div class="form-group"> |
50 | <label>Founding Year: *</label> | 50 | <label>Founding Year: *</label> |
51 | <input type="text" class="form-control" ng-model="data.founder" required> | 51 | <input type="text" class="form-control" ng-model="data.founder" required> |
52 | </div> | 52 | </div> |
53 | <div class="form-group"> | 53 | <div class="form-group"> |
54 | <label>Type: *</label> | 54 | <label>Type: *</label> |
55 | <select class="form-control" ng-model="data.business" required> | 55 | <select class="form-control" ng-model="data.business" required> |
56 | <option name="business" selected disabled value="">Choose type</option> | 56 | <option name="business" selected disabled value="">Choose type</option> |
57 | <option value="B2B">B2B</option> | 57 | <option value="B2B">B2B</option> |
58 | <option value="B2C">B2C</option> | 58 | <option value="B2C">B2C</option> |
59 | <option value="B2G">B2G</option> | 59 | <option value="B2G">B2G</option> |
60 | </select> | 60 | </select> |
61 | </div> | 61 | </div> |
62 | <div class="form-group"> | 62 | <div class="form-group"> |
63 | <label>Stage: *</label> | 63 | <label>Stage: *</label> |
64 | <select class="form-control" ng-model="data.stage" required> | 64 | <select class="form-control" ng-model="data.stage" required> |
65 | <option name="stage" selected disabled value="">Choose Startup Stage</option> | 65 | <option name="stage" selected disabled value="">Choose Startup Stage</option> |
66 | <option value="Ideation">Ideation</option> | 66 | <option value="Ideation">Ideation</option> |
67 | <option value="POC/Beta">POC/Beta</option> | 67 | <option value="POC/Beta">POC/Beta</option> |
68 | <option value="Revenue">Revenue</option> | 68 | <option value="Revenue">Revenue</option> |
69 | </select> | 69 | </select> |
70 | </div> | 70 | </div> |
71 | <div class="form-group"> | 71 | <div class="form-group"> |
72 | <label>Sector: *</label> | 72 | <label>Sector: *</label> |
73 | <select class="form-control" ng-model="data.sector" ng-change="GetValue()" required> | 73 | <select class="form-control" ng-model="data.sector" ng-change="GetValue()" required> |
74 | <option name="sector" selected disabled value="">Choose sector</option> | 74 | <option name="sector" selected disabled value="">Choose sector</option> |
75 | <option value="Agriculture">Agriculture</option> | 75 | <option value="Agriculture">Agriculture</option> |
76 | <option value="Healthcare">Healthcare</option> | 76 | <option value="Healthcare">Healthcare</option> |
77 | <option value="e-Governance">e-Governance</option> | 77 | <option value="e-Governance">e-Governance</option> |
78 | <option value="Retail">Retail</option> | 78 | <option value="Retail">Retail</option> |
79 | <option value="Food and Beverages">Food and Beverages</option> | 79 | <option value="Food and Beverages">Food and Beverages</option> |
80 | <option value="Hardware">Hardware</option> | 80 | <option value="Hardware">Hardware</option> |
81 | <option value="Software">Software</option> | 81 | <option value="Software">Software</option> |
82 | <option value="Media and Entertainment">Media and Entertainment</option> | 82 | <option value="Media and Entertainment">Media and Entertainment</option> |
83 | <option value="AI">AI</option> | 83 | <option value="AI">AI</option> |
84 | <option value="AR&VR">AR&VR</option> | 84 | <option value="AR&VR">AR&VR</option> |
85 | <option value="Automobile">Automobile</option> | 85 | <option value="Automobile">Automobile</option> |
86 | <option value="Other">Other</option> | 86 | <option value="Other">Other</option> |
87 | </select> | 87 | </select> |
88 | </div> | 88 | </div> |
89 | <div class="form-group" ng-if="ngShowhide"> | 89 | <div class="form-group" ng-if="ngShowhide"> |
90 | <input type="text" class="form-control" ng-model="data.sectorType" placeholder="Other Sector Name"> | 90 | <input type="text" class="form-control" ng-model="data.sectorType" placeholder="Other Sector Name"> |
91 | </div> | 91 | </div> |
92 | <div class="form-group"> | 92 | <div class="form-group"> |
93 | <label>How did you hear about us? *</label> | 93 | <label>How did you hear about us? *</label> |
94 | <select class="form-control" ng-model="data.hear" ng-change="getValue()" required> | 94 | <select class="form-control" ng-model="data.hear" ng-change="getValue()" required> |
95 | <option name="stage" selected disabled value="">Choose Type</option> | 95 | <option name="stage" selected disabled value="">Choose Type</option> |
96 | <option value="Ecells">Ecells</option> | 96 | <option value="Ecells">Ecells</option> |
97 | <option value="Accelerators/Incubators">Accelerators/Incubators</option> | 97 | <option value="Accelerators/Incubators">Accelerators/Incubators</option> |
98 | <option value="Facebook">Facebook</option> | 98 | <option value="Facebook">Facebook</option> |
99 | <option value="Instagram">Instagram</option> | 99 | <option value="Instagram">Instagram</option> |
100 | <option value="Youtube">Youtube</option> | 100 | <option value="Youtube">Youtube</option> |
101 | <option value="LinkedIn">LinkedIn</option> | 101 | <option value="LinkedIn">LinkedIn</option> |
102 | <option value="Google">Google</option> | 102 | <option value="Google">Google</option> |
103 | <option value="Other">Other</option> | 103 | <option value="Other">Other</option> |
104 | </select> | 104 | </select> |
105 | </div> | 105 | </div> |
106 | <div class="form-group" ng-if="ngShow"> | 106 | <div class="form-group" ng-if="ngShow"> |
107 | <input type="text" class="form-control" ng-model="data.otherType" placeholder="Other Type Name"> | 107 | <input type="text" class="form-control" ng-model="data.otherType" placeholder="Other Type Name"> |
108 | </div> | 108 | </div> |
109 | <div class="form-group"> | 109 | <div class="form-group"> |
110 | <label>Twitter Pitch: *</label> | 110 | <label>Twitter Pitch: *</label> |
111 | <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> | 111 | <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> |
112 | </div> | 112 | </div> |
113 | <div class="form-group"> | 113 | <div class="form-group"> |
114 | <label>Revenue: *</label> | 114 | <label>Revenue: *</label> |
115 | <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> | 115 | <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> |
116 | </div> | 116 | </div> |
117 | <div class="form-group"> | 117 | <div class="form-group"> |
118 | <label>Previous Investments: *</label> | 118 | <label>Previous Investments: *</label> |
119 | <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> | 119 | <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> |
120 | </div> | 120 | </div> |
121 | <div class="form-group"> | 121 | <div class="form-group"> |
122 | <label>What is the investment amount that you are seeking? Please mention the equity you are willing to dilute as well. *</label> | ||
123 | <input type="text" class="form-control" ng-model="data.equity" required> | ||
124 | </div> | ||
125 | <div class="form-group"> | ||
122 | <label>Coupon Code:</label> | 126 | <label>Coupon Code:</label> |
123 | <!-- <input type="text" class="form-control" placeholder="If you have a coupon code then apply here"ng-model="data.referalToken"> --> | 127 | <!-- <input type="text" class="form-control" placeholder="If you have a coupon code then apply here"ng-model="data.referalToken"> --> |
124 | <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)"> | 128 | <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)"> |
125 | <i class="material-icons coupen-approved" ng-if="tokencheck == true">check</i> | 129 | <i class="material-icons coupen-approved" ng-if="tokencheck == true">check</i> |
126 | <i class="material-icons coupen-approved" style="color:red;" ng-if="tokencheck == false">close</i> | 130 | <i class="material-icons coupen-approved" style="color:red;" ng-if="tokencheck == false">close</i> |
127 | <button type="button" ng-click="tokenCall(data.referalToken)" class="pull-right apply-coupen-btn">Apply</button> | 131 | <button type="button" ng-click="tokenCall(data.referalToken)" class="pull-right apply-coupen-btn">Apply</button> |
128 | </div> | 132 | </div> |
129 | <div class="form-group"> | 133 | <div class="form-group"> |
130 | <label>Attach Pitch Deck: *</label> | 134 | <label>Attach Pitch Deck: *</label> |
131 | <input type="file" class="form-control-file" valid-file ng-model="data.uploadFile" required id="filePicker" accept=".png, .jpg, .jpeg, .pdf, .ppt"> | 135 | <input type="file" class="form-control-file" valid-file ng-model="data.uploadFile" required id="filePicker" accept=".png, .jpg, .jpeg, .pdf, .ppt"> |
132 | <span ng-show="fileSelect" class=form-group-text>Please Select a File</span> | 136 | <span ng-show="fileSelect" class=form-group-text>Please Select a File</span> |
133 | </div> | 137 | </div> |
134 | <div class=form-group-text> | 138 | <div class=form-group-text> |
135 | Fields marked with "<b>*</b>" are mandatory. | 139 | Fields marked with "<b>*</b>" are mandatory. |
136 | </div> | 140 | </div> |
137 | <div class=form-group-text> | 141 | <div class=form-group-text> |
138 | * Total Amount: ₹{{payingAmnt}} | 142 | * Total Amount: ₹{{payingAmnt}} |
139 | </div> | 143 | </div> |
140 | </div> | 144 | </div> |
141 | <div class="clearfix"></div> | 145 | <div class="clearfix"></div> |
142 | <div class="text-center"> | 146 | <div class="text-center"> |
143 | <input type="submit" class="btn submit-button-form" style="outline: none;" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()"> | 147 | <input type="submit" class="btn submit-button-form" style="outline: none;" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()"> |
144 | </div> | 148 | </div> |
145 | </div> | 149 | </div> |
146 | <!-- <div class="col-xs-12 col-md-6 input-wrapper" > | 150 | <!-- <div class="col-xs-12 col-md-6 input-wrapper" > |
147 | <div id="snackbar">Error ! Please fill in all fields.</div> | 151 | <div id="snackbar">Error ! Please fill in all fields.</div> |
148 | <div class="icon-circle-c"> | 152 | <div class="icon-circle-c"> |
149 | <i class="material-icons" style="line-height: 31px;">person</i> | 153 | <i class="material-icons" style="line-height: 31px;">person</i> |
150 | </div> | 154 | </div> |
151 | <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)"> | 155 | <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)"> |
152 | </div> | 156 | </div> |
153 | <div class="col-xs-12 col-md-6 input-wrapper" > | 157 | <div class="col-xs-12 col-md-6 input-wrapper" > |
154 | <div id="snackbar">Error ! Please fill in all fields.</div> | 158 | <div id="snackbar">Error ! Please fill in all fields.</div> |
155 | <div class="icon-circle-d"> | 159 | <div class="icon-circle-d"> |
156 | <i class="material-icons" style="line-height: 30px;">email</i> | 160 | <i class="material-icons" style="line-height: 30px;">email</i> |
157 | </div> | 161 | </div> |
158 | <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)"> | 162 | <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)"> |
159 | <label class="error-message f-family" id="invalidEmail">Please enter a valid email address.</label> | 163 | <label class="error-message f-family" id="invalidEmail">Please enter a valid email address.</label> |
160 | </div> | 164 | </div> |
161 | <div class="col-xs-12 col-md-6 input-wrapper"> | 165 | <div class="col-xs-12 col-md-6 input-wrapper"> |
162 | <div class="icon-circle-f"> | 166 | <div class="icon-circle-f"> |
163 | <i class="material-icons" style="line-height: 30px;">location_city</i> | 167 | <i class="material-icons" style="line-height: 30px;">location_city</i> |
164 | </div> | 168 | </div> |
165 | <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> | 169 | <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> |
166 | <option name="city" selected disabled value="">{{data.city}}</option> | 170 | <option name="city" selected disabled value="">{{data.city}}</option> |
167 | <option value="Ahmedabad">Ahmedabad</option> | 171 | <option value="Ahmedabad">Ahmedabad</option> |
168 | <option value="Bengaluru">Bengaluru</option> | 172 | <option value="Bengaluru">Bengaluru</option> |
169 | <option value="Chennai">Chennai</option> | 173 | <option value="Chennai">Chennai</option> |
170 | <option value="Delhi">Delhi</option> | 174 | <option value="Delhi">Delhi</option> |
171 | <option value="Hyderabad">Hyderabad</option> | 175 | <option value="Hyderabad">Hyderabad</option> |
172 | <option value="Jaipur">Jaipur</option> | 176 | <option value="Jaipur">Jaipur</option> |
173 | <option value="Kanpur">Kanpur</option> | 177 | <option value="Kanpur">Kanpur</option> |
174 | <option value="Kolkata">Kolkata</option> | 178 | <option value="Kolkata">Kolkata</option> |
175 | <option value="Mumbai">Mumbai</option> | 179 | <option value="Mumbai">Mumbai</option> |
176 | </select> | 180 | </select> |
177 | </div> | 181 | </div> |
178 | <div class="col-xs-12 col-md-6 input-wrapper" > | 182 | <div class="col-xs-12 col-md-6 input-wrapper" > |
179 | <div class="icon-circle-e"> | 183 | <div class="icon-circle-e"> |
180 | <i class="material-icons" style="line-height: 30px;">phone</i> | 184 | <i class="material-icons" style="line-height: 30px;">phone</i> |
181 | </div> | 185 | </div> |
182 | <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)"> | 186 | <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)"> |
183 | <label class="error-message f-family" id="invalidNumber">Please enter only numeric value.</label> | 187 | <label class="error-message f-family" id="invalidNumber">Please enter only numeric value.</label> |
184 | </div> | 188 | </div> |
185 | <div class="col-xs-12 col-md-6 input-wrapper"> | 189 | <div class="col-xs-12 col-md-6 input-wrapper"> |
186 | <div class="icon-circle-i"> | 190 | <div class="icon-circle-i"> |
187 | <i class="material-icons" style="line-height: 30px;">perm_identity</i> | 191 | <i class="material-icons" style="line-height: 30px;">perm_identity</i> |
188 | </div> | 192 | </div> |
189 | <input type="text" class="text-input" ng-model="data.companyName" placeholder="Company Name *" ng-change="enternumber(data.companyName); companykeyPress(data.companyName)" required> | 193 | <input type="text" class="text-input" ng-model="data.companyName" placeholder="Company Name *" ng-change="enternumber(data.companyName); companykeyPress(data.companyName)" required> |
190 | </div> | 194 | </div> |
191 | <div class="col-xs-12 col-md-6 input-wrapper"> | 195 | <div class="col-xs-12 col-md-6 input-wrapper"> |
192 | <div class="icon-circle-n"> | 196 | <div class="icon-circle-n"> |
193 | <i class="material-icons" style="line-height: 30px;">web</i> | 197 | <i class="material-icons" style="line-height: 30px;">web</i> |
194 | </div> | 198 | </div> |
195 | <input name="website" class="text-input" ng-model="data.website" placeholder="Website link" ng-change="enterwebsite(data.website); revenuekeyPress(data.website)"></input> | 199 | <input name="website" class="text-input" ng-model="data.website" placeholder="Website link" ng-change="enterwebsite(data.website); revenuekeyPress(data.website)"></input> |
196 | </div> | 200 | </div> |
197 | <div class="col-xs-12 col-md-6 input-wrapper"> | 201 | <div class="col-xs-12 col-md-6 input-wrapper"> |
198 | <div class="icon-circle-y"> | 202 | <div class="icon-circle-y"> |
199 | <i class="material-icons" style="line-height: 30px;">assignment</i> | 203 | <i class="material-icons" style="line-height: 30px;">assignment</i> |
200 | </div> | 204 | </div> |
201 | <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> | 205 | <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> |
202 | <option name="stage" selected disabled value="">Choose Startup Stage *</option> | 206 | <option name="stage" selected disabled value="">Choose Startup Stage *</option> |
203 | <option value="Idea">Idea</option> | 207 | <option value="Idea">Idea</option> |
204 | <option value="Prototype">Prototype</option> | 208 | <option value="Prototype">Prototype</option> |
205 | </select> | 209 | </select> |
206 | </div> | 210 | </div> |
207 | <div class="col-xs-12 col-md-6 input-wrapper"> | 211 | <div class="col-xs-12 col-md-6 input-wrapper"> |
208 | <div class="icon-circle-q"> | 212 | <div class="icon-circle-q"> |
209 | <i class="material-icons" style="line-height: 30px;">business</i> | 213 | <i class="material-icons" style="line-height: 30px;">business</i> |
210 | </div> | 214 | </div> |
211 | <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> | 215 | <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> |
212 | <option name="business" selected disabled value="">Type of business *</option> | 216 | <option name="business" selected disabled value="">Type of business *</option> |
213 | <option value="B2B">B2B</option> | 217 | <option value="B2B">B2B</option> |
214 | <option value="B2C">B2C</option> | 218 | <option value="B2C">B2C</option> |
215 | <option value="Other">Other</option> | 219 | <option value="Other">Other</option> |
216 | </select> | 220 | </select> |
217 | </div> | 221 | </div> |
218 | <div class="col-xs-12 col-md-12 f-family line-adjust"> | 222 | <div class="col-xs-12 col-md-12 f-family line-adjust"> |
219 | <strong>How many founders/teammates will be attending pitch session? *</strong> | 223 | <strong>How many founders/teammates will be attending pitch session? *</strong> |
220 | <p class="line-space" ></p> | 224 | <p class="line-space" ></p> |
221 | </div> | 225 | </div> |
222 | <div class="col-xs-12 col-md-12 input-wrapper" > | 226 | <div class="col-xs-12 col-md-12 input-wrapper" > |
223 | <div class="icon-circle-o"> | 227 | <div class="icon-circle-o"> |
224 | <i class="material-icons" style="line-height: 30px;">confirmation_number</i> | 228 | <i class="material-icons" style="line-height: 30px;">confirmation_number</i> |
225 | </div> | 229 | </div> |
226 | <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> | 230 | <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> |
227 | <option name="founder" selected disabled value="">Choose</option> | 231 | <option name="founder" selected disabled value="">Choose</option> |
228 | <option value="1">1</option> | 232 | <option value="1">1</option> |
229 | <option value="2">2</option> | 233 | <option value="2">2</option> |
230 | <option value="3">3</option> | 234 | <option value="3">3</option> |
231 | <option value="more than 3">more than 3</option> | 235 | <option value="more than 3">more than 3</option> |
232 | </select> | 236 | </select> |
233 | </div> --> | 237 | </div> --> |
234 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> | 238 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> |
235 | <strong>In which city is your startup registered at?</strong> | 239 | <strong>In which city is your startup registered at?</strong> |
236 | <p class="line-space" ></p> | 240 | <p class="line-space" ></p> |
237 | </div> --> | 241 | </div> --> |
238 | <!-- <div class="col-xs-12 col-md-12 input-wrapper"> | 242 | <!-- <div class="col-xs-12 col-md-12 input-wrapper"> |
239 | <div class="icon-circle-m"> | 243 | <div class="icon-circle-m"> |
240 | <i class="material-icons" style="line-height: 30px;">assessment</i> | 244 | <i class="material-icons" style="line-height: 30px;">assessment</i> |
241 | </div> | 245 | </div> |
242 | <input type="text" class="text-input" ng-model="data.cityRegister" placeholder="Your Answer.." ng-change="entertechnology(data.cityRegister); annualkeyPress(data.cityRegister)"> | 246 | <input type="text" class="text-input" ng-model="data.cityRegister" placeholder="Your Answer.." ng-change="entertechnology(data.cityRegister); annualkeyPress(data.cityRegister)"> |
243 | </div> --> | 247 | </div> --> |
244 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> | 248 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> |
245 | <strong>Give us a brief introduction about your startup. *</strong> | 249 | <strong>Give us a brief introduction about your startup. *</strong> |
246 | <p class="line-space" >Kindly write a powerful Twitter Pitch (characters limit - 200).</p> | 250 | <p class="line-space" >Kindly write a powerful Twitter Pitch (characters limit - 200).</p> |
247 | </div> | 251 | </div> |
248 | <div class="col-xs-12 col-md-12 input-wrapper"> | 252 | <div class="col-xs-12 col-md-12 input-wrapper"> |
249 | <div class="icon-circle-x"> | 253 | <div class="icon-circle-x"> |
250 | <i class="material-icons" style="line-height: 30px;">line_weight</i> | 254 | <i class="material-icons" style="line-height: 30px;">line_weight</i> |
251 | </div> | 255 | </div> |
252 | <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> | 256 | <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> |
253 | </div> | 257 | </div> |
254 | <div class="col-xs-12 col-md-12 f-family line-adjust"> | 258 | <div class="col-xs-12 col-md-12 f-family line-adjust"> |
255 | <strong>Who are your customers? *</strong> | 259 | <strong>Who are your customers? *</strong> |
256 | <p class="line-space" >We are looking for a simple and clear answer of who you are selling to (characters limit - 512).</p> | 260 | <p class="line-space" >We are looking for a simple and clear answer of who you are selling to (characters limit - 512).</p> |
257 | </div> | 261 | </div> |
258 | <div class="col-xs-12 col-md-12 input-wrapper"> | 262 | <div class="col-xs-12 col-md-12 input-wrapper"> |
259 | <div class="icon-circle-k"> | 263 | <div class="icon-circle-k"> |
260 | <i class="material-icons" style="line-height: 30px;">help</i> | 264 | <i class="material-icons" style="line-height: 30px;">help</i> |
261 | </div> | 265 | </div> |
262 | <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> | 266 | <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> |
263 | </div> --> | 267 | </div> --> |
264 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> | 268 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> |
265 | <strong>What problem you are solving for them? *</strong> | 269 | <strong>What problem you are solving for them? *</strong> |
266 | <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> | 270 | <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> |
267 | </div> | 271 | </div> |
268 | <div class="col-xs-12 col-md-12 input-wrapper f-family"> | 272 | <div class="col-xs-12 col-md-12 input-wrapper f-family"> |
269 | <div class="icon-circle-p"> | 273 | <div class="icon-circle-p"> |
270 | <i class="material-icons" style="line-height: 30px;">business_center</i> | 274 | <i class="material-icons" style="line-height: 30px;">business_center</i> |
271 | </div> | 275 | </div> |
272 | <textarea name="problem" class="text-input textarea" ng-model="data.problem" placeholder="Your Answer.." ng-change="enterbusiness(data.problem); businesskeyPress(data.problem)" required> | 276 | <textarea name="problem" class="text-input textarea" ng-model="data.problem" placeholder="Your Answer.." ng-change="enterbusiness(data.problem); businesskeyPress(data.problem)" required> |
273 | </textarea> | 277 | </textarea> |
274 | </div> --> | 278 | </div> --> |
275 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> | 279 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> |
276 | <strong>Link your pitch deck presentation. *</strong> | 280 | <strong>Link your pitch deck presentation. *</strong> |
277 | <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> | 281 | <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> |
278 | </div> | 282 | </div> |
279 | <div class="col-xs-12 col-md-12 input-wrapper f-family"> | 283 | <div class="col-xs-12 col-md-12 input-wrapper f-family"> |
280 | <div class="icon-circle-h"> | 284 | <div class="icon-circle-h"> |
281 | <i class="material-icons" style="line-height: 30px;">web</i> | 285 | <i class="material-icons" style="line-height: 30px;">web</i> |
282 | </div> | 286 | </div> |
283 | <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> | 287 | <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> |
284 | <label class="error-message f-family" id="invalidEmail">Please enter a valid link.</label> | 288 | <label class="error-message f-family" id="invalidEmail">Please enter a valid link.</label> |
285 | </div> --> | 289 | </div> --> |
286 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> | 290 | <!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> |
287 | <strong>Coupon Code.</strong> | 291 | <strong>Coupon Code.</strong> |
288 | <p class="line-space" >Only applicable for venue partner ecosystem</p> | 292 | <p class="line-space" >Only applicable for venue partner ecosystem</p> |
289 | </div> | 293 | </div> |
290 | <div class="col-xs-12 input-wrapper"> | 294 | <div class="col-xs-12 input-wrapper"> |
291 | <div class="referel-icon" style="z-index: 999;"> | 295 | <div class="referel-icon" style="z-index: 999;"> |
292 | <i class="material-icons" style="line-height: 30px;">code</i> | 296 | <i class="material-icons" style="line-height: 30px;">code</i> |
293 | </div> | 297 | </div> |
294 | <input class="text-input" ng-model="data.referalToken" placeholder="Enter Coupon code" style="position: relative;" ng-required="referalToken" ng-change="changeReferalIconColor(data.referalToken)"> | 298 | <input class="text-input" ng-model="data.referalToken" placeholder="Enter Coupon code" style="position: relative;" ng-required="referalToken" ng-change="changeReferalIconColor(data.referalToken)"> |
295 | <i class="material-icons coupen-approved" ng-if="tokencheck == true">check</i> | 299 | <i class="material-icons coupen-approved" ng-if="tokencheck == true">check</i> |
296 | <i class="material-icons coupen-approved" style="color:red;" ng-if="tokencheck == false">close</i> | 300 | <i class="material-icons coupen-approved" style="color:red;" ng-if="tokencheck == false">close</i> |
297 | <button type="button" ng-click="tokenCall(data.referalToken)" class="pull-right apply-coupen-btn">Apply</button> | 301 | <button type="button" ng-click="tokenCall(data.referalToken)" class="pull-right apply-coupen-btn">Apply</button> |
298 | </div> --> | 302 | </div> --> |
299 | <!-- <div class="clearfix"></div> --> | 303 | <!-- <div class="clearfix"></div> --> |
300 | <!-- </div> --> | 304 | <!-- </div> --> |
301 | <!-- close step-one-form --> | 305 | <!-- close step-one-form --> |
302 | <!-- </td> | 306 | <!-- </td> |
303 | </tr> | 307 | </tr> |
304 | </table> --> | 308 | </table> --> |
305 | <!-- <div class="text-center"> | 309 | <!-- <div class="text-center"> |
306 | <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid || filePicker" value="Submit" ng-click="submit()"> | 310 | <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid || filePicker" value="Submit" ng-click="submit()"> |
307 | </div> | 311 | </div> |
308 | </div> --> | 312 | </div> --> |
309 | <!-- CLOSE form-all --> | 313 | <!-- CLOSE form-all --> |
310 | <!-- </div> --> | 314 | <!-- </div> --> |
311 | <!-- <div class="clearfix"></div> | 315 | <!-- <div class="clearfix"></div> |
312 | <div class="text-center"> | 316 | <div class="text-center"> |
313 | <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()"> | 317 | <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()"> |
314 | </div> --> | 318 | </div> --> |
315 | </div> | 319 | </div> |
316 | <!-- col-xs-12 col-md-8 col-md-offset-2 --> | 320 | <!-- col-xs-12 col-md-8 col-md-offset-2 --> |
317 | <!-- <footer> | 321 | <!-- <footer> |
318 | <img id="footer" class="img-responsive banner"> | 322 | <img id="footer" class="img-responsive banner"> |
319 | <center class="footer"><a class="footer-link" href="http://www.viithiisys.com/" target="_blank"></a> | 323 | <center class="footer"><a class="footer-link" href="http://www.viithiisys.com/" target="_blank"></a> |
320 | </center> | 324 | </center> |
321 | </footer> --> | 325 | </footer> --> |
322 | </form> | 326 | </form> |
323 | <!-- CLOSE FORM --> | 327 | <!-- CLOSE FORM --> |
324 | <!-- </div> CLOSE CHECK VIEW --> | 328 | <!-- </div> CLOSE CHECK VIEW --> |
325 | <span ng-show="span == true"> | 329 | <span ng-show="span == true"> |
326 | <span id="chennai"></span> | 330 | <span id="chennai"></span> |
327 | <span id="mumbai"></span> | 331 | <span id="mumbai"></span> |
328 | <span id="hyderabad"></span> | 332 | <span id="hyderabad"></span> |
329 | <span id="kolkata"></span> | 333 | <span id="kolkata"></span> |
330 | <span id="delhi"></span> | 334 | <span id="delhi"></span> |
331 | <span id="ahmedabad"></span> | 335 | <span id="ahmedabad"></span> |
332 | <span id="bengaluru"></span> | 336 | <span id="bengaluru"></span> |
333 | <span id="jaipur"></span> | 337 | <span id="jaipur"></span> |
334 | <span id="kanpur"></span> | 338 | <span id="kanpur"></span> |
335 | <span id="dharamsala"></span> | 339 | <span id="dharamsala"></span> |
336 | </span> | 340 | </span> |
337 | 341 |