diff --git a/pages/Home.html b/pages/Home.html
index 580ceef..778b134 100644
--- a/pages/Home.html
+++ b/pages/Home.html
@@ -122,6 +122,15 @@
+
Is there any registration fee involved?
+
+
+ - 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.
+ - There is no fee for the Invest edition - however, the cost of logistics and subsidized stay will have to borne by the Startups themselves.
+
+
+
+
Quick help on Elevator Pitch:
diff --git a/pages/caricatures.html b/pages/caricatures.html
index 9029345..262cd3f 100644
--- a/pages/caricatures.html
+++ b/pages/caricatures.html
@@ -29,7 +29,7 @@
- IIM Bengaluru
+ IIM Bangalore
Bengaluru | September 7th, 2019
diff --git a/script.js b/script.js
index eb27984..aceb659 100644
--- a/script.js
+++ b/script.js
@@ -33,7 +33,13 @@
.when('/registration', {
templateUrl: 'pages/registration.html',
controller: 'registrationController'
- })
+ })
+
+ // route for the campusAmbassador page
+ // .when('/campusAmbassador', {
+ // templateUrl: 'pages/campusAmbassador.html',
+ // controller: 'confirmationController'
+ // })
//route for the ambassador page
.when('/startupJalsaPromocode', {
@@ -756,7 +762,7 @@
$('#invalidToken').css('display', 'block');
} else {
val = val.toUpperCase();
- 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")){
+ 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")){
$scope.tokencheck = false;
return;
}
@@ -1325,10 +1331,10 @@ scotchApp.controller('ambassadorController', function($scope, $http, $location,
$scope.submit = function() {
//var randomNumber = ""+Math.random();
- var nameSpliced = $scope.data.name.slice(0,5);
+ var nameSpliced = $scope.data.name.slice(0,4);
//var numberSpliced = randomNumber.slice(2,4);
- //var numberSpliced = "99";
- $scope.data.referalToken = nameSpliced;
+ var numberSpliced = "90";
+ $scope.data.referalToken = nameSpliced+numberSpliced;
$scope.data.referalToken = $scope.data.referalToken.toUpperCase();
$http({
method: 'POST',