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