Commit e7202f14e27a496d61410a036dbb3584cb0d8f8c
1 parent
e01ea6e459
Exists in
master
and in
1 other branch
validation required in upload file
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
pages/registration.html
... | ... | @@ -104,7 +104,7 @@ |
104 | 104 | <div class="form-group"> |
105 | 105 | <label>Attach Pitch Deck: *</label> |
106 | 106 | <input type="file" class="form-control-file" ng-model="data.uploadFile" id="filePicker" accept=".png, .jpg, .jpeg, .pdf, .ppt"> |
107 | - <!-- <span ng-show="fileSelect" class=form-group-text>Please Select a File.</span> --> | |
107 | + <span ng-show="fileSelect" class=form-group-text>Please Select a File</span> | |
108 | 108 | </div> |
109 | 109 | <div class=form-group-text> |
110 | 110 | Fields marked with "<b>*</b>" are mandatory. |
... | ... | @@ -270,7 +270,7 @@ |
270 | 270 | </tr> |
271 | 271 | </table> --> |
272 | 272 | <div class="text-center"> |
273 | - <input type="submit" class="btn submit-button-form" id="disableButton" ng-disabled="applicantForm.$invalid || disabled" value="Submit" ng-click="submit()"> | |
273 | + <input type="submit" class="btn submit-button-form" ng-disabled="applicantForm.$invalid" value="Submit" ng-click="submit()"> | |
274 | 274 | </div> |
275 | 275 | </div> |
276 | 276 | <!-- CLOSE form-all --> | ... | ... |