Commit 87fd7a7ac00b8f5ca95a0b4a42c9342866672dd4
1 parent
1ec9598124
Exists in
master
change answer
Showing
1 changed file
with
15 additions
and
2 deletions
Show diff stats
pages/registration.html
... | ... | @@ -58,7 +58,7 @@ |
58 | 58 | <option value="B2C">B2C</option> |
59 | 59 | </select> |
60 | 60 | </div> |
61 | - <div class="form-group"> | |
61 | + <div class="form-group"> | |
62 | 62 | <label>Stage: *</label> |
63 | 63 | <select class="form-control" ng-model="data.stage" required> |
64 | 64 | <option name="stage" selected disabled value="">Choose Startup Stage</option> |
... | ... | @@ -66,7 +66,7 @@ |
66 | 66 | <option value="POC/Beta">POC/Beta</option> |
67 | 67 | <option value="Revenue">Revenue</option> |
68 | 68 | </select> |
69 | - </div> | |
69 | + </div> | |
70 | 70 | <div class="form-group"> |
71 | 71 | <label>Sector: *</label> |
72 | 72 | <select class="form-control" ng-model="data.sector" ng-change="GetValue()" required> |
... | ... | @@ -85,6 +85,19 @@ |
85 | 85 | <option value="Other">Other</option> |
86 | 86 | </select> |
87 | 87 | </div> |
88 | + <div class="form-group"> | |
89 | + <label>How did you hear about us? *</label> | |
90 | + <select class="form-control" ng-model="data.hear" required> | |
91 | + <option name="stage" selected disabled value="">Choose Type</option> | |
92 | + <option value="Ecells">Ecells</option> | |
93 | + <option value="Accelerators/Incubators">Accelerators/Incubators</option> | |
94 | + <option value="Facebook">Facebook</option> | |
95 | + <option value="Instagram">Instagram</option> | |
96 | + <option value="Youtube">Youtube</option> | |
97 | + <option value="LinkedIn">LinkedIn</option> | |
98 | + <option value="Google">Google</option> | |
99 | + </select> | |
100 | + </div> | |
88 | 101 | <div class="form-group" ng-if="ngShowhide"> |
89 | 102 | <input type="text" class="form-control" ng-model="data.sectorType" placeholder="Other Sector Name"> |
90 | 103 | </div> | ... | ... |