Blame view
pages/registration.html
13.9 KB
b96c88383
|
1 2 |
<div class="header"> <div> |
371ae3145
|
3 |
<img src="images/LOGO.png" class="logojalsa"><span class="jalsaheadr" style="">2018</span> |
3831d8904
|
4 |
<!-- <img src="images/SartupJalsa_Logo.png" style="width:200px;position:relative;"> --> |
b96c88383
|
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
</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"> <!-- <table style="width: 100%;"> <tr> <td> <div class="step-one-form" > --> <!-- form step 1 --> <div class="col-xs-12 col-md-6 input-wrapper" > <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
|
21 |
</div> |
b96c88383
|
22 23 24 25 26 27 |
<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
|
28 |
</div> |
dee1f7479
|
29 30 31 |
<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> <!-- <label ng-if="check">Email already exist.</label> --> |
b96c88383
|
32 33 34 35 |
</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
|
36 |
</div> |
b96c88383
|
37 38 39 |
<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
|
40 |
<option value="Bengaluru">Bengaluru</option> |
b96c88383
|
41 42 43 44 45 46 47 48 49 |
<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
|
50 51 52 53 54 55 56 57 |
<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> <!-- <label ng-if="numberCheck">Contact Number already exist.</label> --> </div> |
b96c88383
|
58 59 60 |
<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
|
61 |
</div> |
b96c88383
|
62 63 64 65 66 |
<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
|
67 |
</div> |
b96c88383
|
68 69 70 71 72 |
<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
|
73 |
</div> |
b96c88383
|
74 75 |
<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
|
76 77 78 |
<option value="Idea">Idea</option> <option value="Prototype">Prototype</option> <!-- <option value="Proof of Concept">Proof of Concept</option> |
b96c88383
|
79 80 81 82 |
<option value="Beta Launched">Beta Launched</option> <option value="Early Revenues">Early Revenues</option> <option value="Steady Revenues">Steady Revenues</option> <option value="Other">Other</option> |
fa4873a39
|
83 |
--> </select> |
b96c88383
|
84 85 86 87 |
</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
|
88 |
</div> |
b96c88383
|
89 90 91 92 93 94 95 96 97 98 99 100 101 |
<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> </select> </div> <div class="col-xs-12 col-md-12 f-family line-adjust"> <strong>How many founders/teammates will be attending the meetup? *</strong> <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
|
102 |
</div> |
b96c88383
|
103 104 105 106 107 108 109 110 |
<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> </div> |
fa4873a39
|
111 |
<!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> |
b96c88383
|
112 113 |
<strong>In which city is your startup registered at?</strong> <p class="line-space" ></p> |
fa4873a39
|
114 |
</div> --> |
67512023f
|
115 |
<!-- <div class="col-xs-12 col-md-12 input-wrapper"> |
b96c88383
|
116 117 |
<div class="icon-circle-m"> <i class="material-icons" style="line-height: 30px;">assessment</i> |
88dd26b3d
|
118 |
</div> |
b96c88383
|
119 |
<input type="text" class="text-input" ng-model="data.cityRegister" placeholder="Your Answer.." ng-change="entertechnology(data.cityRegister); annualkeyPress(data.cityRegister)"> |
67512023f
|
120 |
</div> --> |
b96c88383
|
121 122 |
<div class="col-xs-12 col-md-12 f-family line-adjust"> <strong>Give us a brief introduction about your startup. *</strong> |
7cdbd289e
|
123 |
<p class="line-space" >Kindly write a powerful Twitter Pitch (word limit-200).</p> |
b96c88383
|
124 125 126 127 |
</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
|
128 |
</div> |
b96c88383
|
129 130 131 132 133 134 135 136 137 |
<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> <p class="line-space" >We are looking for a simple and clear answer of who you are selling to.</p> </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
|
138 |
</div> |
b96c88383
|
139 140 141 142 143 144 145 146 147 |
<textarea name="customer" class="text-input textarea" ng-model="data.customer" placeholder="Your Answer.." ng-change="entersolution(data.customer); websitekeyPress(data.customer)" required></textarea> </div> <div class="col-xs-12 col-md-12 f-family line-adjust"> <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
|
148 |
</div> |
b96c88383
|
149 150 151 |
<textarea name="problem" class="text-input textarea" ng-model="data.problem" placeholder="Your Answer.." ng-change="enterbusiness(data.problem); businesskeyPress(data.problem)" required> </textarea> </div> |
371ae3145
|
152 |
<!-- <div class="col-xs-12 col-md-12 f-family line-adjust"> |
b96c88383
|
153 154 155 156 157 158 |
<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
|
159 |
</div> |
b96c88383
|
160 |
<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
|
161 |
<label class="error-message f-family" id="invalidEmail">Please enter a valid link.</label> |
371ae3145
|
162 |
</div> --> |
b96c88383
|
163 164 |
<div class="col-xs-12 col-md-12 f-family line-adjust"> <strong>Coupon Code.</strong> |
fb4e2a053
|
165 |
<p class="line-space" >Only applicable for venue partner ecosystem</p> |
b96c88383
|
166 167 168 169 170 171 172 173 174 175 |
</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> </div> |
e6c47cad0
|
176 |
<div class="clearfix"></div> |
b96c88383
|
177 178 179 180 181 182 183 184 |
<!-- </div> --> <!-- close step-one-form --> <!-- </td> </tr> </table> --> </div> <!-- CLOSE form-all --> <!-- </div> --> |
88dd26b3d
|
185 |
<div class="clearfix"></div> |
b96c88383
|
186 187 188 189 190 191 192 193 194 195 196 197 198 |
<div class="text-center"> <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()"> </div> </div> <!-- col-xs-12 col-md-8 col-md-offset-2 --> <footer> <img id="footer" class="img-responsive banner"> <center class="footer"><a class="footer-link" href="http://www.viithiisys.com/" target="_blank"></a> </center> </footer> </form> <!-- CLOSE FORM --> <!-- </div> CLOSE CHECK VIEW --> |