Commit 0859c95d2ab749e953b015c859538a362aabcc9f

Authored by Shilpi Saini
1 parent 37a9cc6604
Exists in master

add questions

... ... @@ -122,6 +122,15 @@
122 122 </div>
123 123 </div>
124 124 <div class="happen-meetup">
  125 + <div class="startup-questions">Is there any registration fee involved?</div>
  126 + <div class="startup-answers">
  127 + <ul>
  128 + <li>To maintain the seriousness of the event, startups will have to pay a nominal fee of INR 1000 + Taxes to pitch at the Pitch Sessions.</li>
  129 + <li>There is no fee for the Invest edition - however, the cost of logistics and subsidized stay will have to borne by the Startups themselves.</li>
  130 + </ul>
  131 + </div>
  132 + </div>
  133 + <div class="happen-meetup">
125 134 <div class="startup-questions">Quick help on Elevator Pitch:</div>
126 135 <div class="startup-answers">Watch this video: <a href="http://bit.ly/2YTwyxY" target="_blank" style="color: #2196f3;">http://bit.ly/2YTwyxY</a></div>
127 136 </div>
... ...
pages/caricatures.html
... ... @@ -29,7 +29,7 @@
29 29 <img class="card-img-top" src="images/Bengaluru.png">
30 30 <img class="img-top" src="images/2 (1).png" ng-click="watch('Bengaluru')">
31 31 </div>
32   - <div class="txt">IIM Bengaluru</div>
  32 + <div class="txt">IIM Bangalore</div>
33 33 <div class="txt1">Bengaluru | September 7th, 2019</div>
34 34 </div>
35 35 <div class="col-md-4 col-sm-8 color" style="margin-top: 5%;">
... ...
... ... @@ -33,7 +33,13 @@
33 33 .when('/registration', {
34 34 templateUrl: 'pages/registration.html',
35 35 controller: 'registrationController'
36   - })
  36 + })
  37 +
  38 + // route for the campusAmbassador page
  39 + // .when('/campusAmbassador', {
  40 + // templateUrl: 'pages/campusAmbassador.html',
  41 + // controller: 'confirmationController'
  42 + // })
37 43  
38 44 //route for the ambassador page
39 45 .when('/startupJalsaPromocode', {
... ... @@ -756,7 +762,7 @@
756 762 $('#invalidToken').css('display', 'block');
757 763 } else {
758 764 val = val.toUpperCase();
759   - if((val == "IITH99" && $scope.data.city != "Hyderabad") || (val == "IITM99" && $scope.data.city != "Chennai") || (val == "IITD99" && $scope.data.city != "Delhi") || (val == "IITB99" && $scope.data.city != "Mumbai") || (val == "IITK99" && $scope.data.city != "Kanpur") || (val == "IIMC99" && $scope.data.city != "Kolkata") || (val == "IIMB99" && $scope.data.city != "Bengaluru") || (val == "IIMA99" && $scope.data.city != "Ahmedabad")){
  765 + if(((val == "IITH99" || val == "IITH90") && $scope.data.city != "Hyderabad") || (val == "IITM99" && $scope.data.city != "Chennai") || (val == "IITD99" && $scope.data.city != "Delhi") || (val == "IITB99" && $scope.data.city != "Mumbai") || (val == "IITK99" && $scope.data.city != "Kanpur") || (val == "IIMC99" && $scope.data.city != "Kolkata") || (val == "IIMB99" && $scope.data.city != "Bengaluru") || (val == "IIMA99" && $scope.data.city != "Ahmedabad")){
760 766 $scope.tokencheck = false;
761 767 return;
762 768 }
... ... @@ -1325,10 +1331,10 @@ scotchApp.controller(&#39;ambassadorController&#39;, function($scope, $http, $location,
1325 1331  
1326 1332 $scope.submit = function() {
1327 1333 //var randomNumber = ""+Math.random();
1328   - var nameSpliced = $scope.data.name.slice(0,5);
  1334 + var nameSpliced = $scope.data.name.slice(0,4);
1329 1335 //var numberSpliced = randomNumber.slice(2,4);
1330   - //var numberSpliced = "99";
1331   - $scope.data.referalToken = nameSpliced;
  1336 + var numberSpliced = "90";
  1337 + $scope.data.referalToken = nameSpliced+numberSpliced;
1332 1338 $scope.data.referalToken = $scope.data.referalToken.toUpperCase();
1333 1339 $http({
1334 1340 method: 'POST',
... ...