Commit 7e3bb101848a7e37d7626f7ab829f8e2e86cf82a

Authored by Palak Handa
1 parent 18f937f881
Exists in master and in 1 other branch paytm

field added

pages/ambassador.html
... ... @@ -23,7 +23,7 @@
23 23 <div class="col-xs-12 input-wrapper" >
24 24 <div id="snackbar">Error ! Please fill in all fields.</div>
25 25 <div class="icon-circle-c">
26   - <i class="material-icons" style="line-height: 31px;">assignment_ind</i>
  26 + <i class="material-icons" style="line-height: 31px;">person</i>
27 27 </div>
28 28 <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)">
29 29 </div>
... ...
pages/registration.html
... ... @@ -347,7 +347,7 @@
347 347 <div class="col-xs-12 col-md-12 input-wrapper">
348 348 <div id="snackbar">Error ! Please fill in all fields.</div>
349 349 <div class="icon-circle-c">
350   - <i class="material-icons" style="line-height: 31px;">assignment_ind</i>
  350 + <i class="material-icons" style="line-height: 31px;">person</i>
351 351 </div>
352 352 <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)">
353 353 </div>
... ... @@ -509,6 +509,13 @@
509 509 <input type="text" ng-pattern="/^[0-9+-]*$/" maxlength="15" class="text-input" ng-blur="numbercheck(data.number)" ng-model="data.number" placeholder="Mobile No.*" ng-focus="removeNoError()" ng-change="enternumber(data.number); phonekeyPress(data.number)">
510 510 <label ng-if="numberCheck">Contact Number already exist.</label>
511 511 </div>
  512 + <div class="col-xs-12 col-md-12 input-wrapper">
  513 + <div id="snackbar">Error ! Please fill in all fields.</div>
  514 + <div class="icon-circle-x">
  515 + <i class="material-icons" style="line-height: 31px;">assignment_ind</i>
  516 + </div>
  517 + <input type="text" class="text-input" required ng-model="data.startupName" placeholder="Startup Name *" id="myBtn" name="startupName" ng-change="entername(data.startupName); startupNamekeyPress(data.startupName)">
  518 + </div>
512 519 <!-- <div class="col-xs-12 col-md-6 input-wrapper" style="position:relative">
513 520 <div id="snackbar">Error ! Please fill in all fields.</div>
514 521 <div class="icon-circle-h">
... ...
... ... @@ -831,7 +831,7 @@
831 831 }
832 832 }
833 833  
834   - $scope.lastNamekeyPress = function(q) {
  834 + $scope.startupNamekeyPress = function(q) {
835 835 if (q == undefined) {
836 836 $('.icon-circle-x').css('background-color', 'rgb(102, 102, 102)');
837 837 } else {
... ...