Commit a78dd61bfd4a387a3dd7150c55b60035301906f0

Authored by Palak Handa
1 parent 93646a5a99
Exists in master and in 1 other branch paytm

minor chaanges

Showing 2 changed files with 12 additions and 11 deletions   Show diff stats
... ... @@ -8,13 +8,14 @@
8 8 <img src="images/white.png" class="logo">
9 9 </div> <!-- CLOSE HEADER -->
10 10 <form name="applicantForm" id="signupForm">
11   - <div class="col-xs-12 col-md-8 col-md-offset-2">
  11 + <p style="margin:1% 18% -1%">Please select one stage.</p>
  12 + <div class="col-xs-12 col-md-8 col-md-offset-2">
12 13 <div class="stage-shadow">
13 14 <div class="stages card-align">
14 15 <div class="col-xs-12 col-md-4" style="margin: -2px -51px 2px 1px;">
15 16 <div class="card stages-card">
16   - <input type="radio" ng-model="data.stage" class="stageRadio" value="Idea" name="Idea" id="ideation" ng-required="Idea" ng-checked="false" ng-click="stage(data.stage); stagekeyPress()">
17   - <label class="thumbnail radius-border stage-thumbnail" for="ideation">
  17 + <input type="radio" ng-model="data.stage" class="stageRadio" value="Idea" name="Idea" id="ideation" ng-required="Idea" ng-checked="true" ng-click="stage(data.stage); stagekeyPress()">
  18 + <label style="cursor:pointer" class="thumbnail radius-border stage-thumbnail" for="ideation">
18 19 <img class="stage-img stage-idea" src="images/idea-stage.png" alt="Lights">
19 20 <div class="card-content f-family">
20 21 <p align="center">Idea</p>
... ... @@ -30,7 +31,7 @@
30 31 <div class="col-xs-12 col-md-4">
31 32 <div class="card stages-card">
32 33 <input type="radio" ng-model="data.stage" class="stageRadio" value="Product" name="Product" id="Proof" ng-required="Product" ng-click="stage(data.stage); stagekeyPress()">
33   - <label class="thumbnail radius-border stage-thumbnail" for="Proof">
  34 + <label style="cursor:pointer" class="thumbnail radius-border stage-thumbnail" for="Proof">
34 35 <img class="stage-img stage-product" src="images/production-stage.png" alt="Lights">
35 36 <div class="card-content f-family">
36 37 <p align="center">Product</p>
... ... @@ -46,7 +47,7 @@
46 47 <div class="col-xs-12 col-md-4 last-content-card">
47 48 <div class="card stages-card">
48 49 <input type="radio" ng-model="data.stage" class="stageRadio" value="Growth" name="Growth" id="Beta" ng-required="Growth" ng-click="stage(data.stage); stagekeyPress()">
49   - <label class="thumbnail radius-border stage-thumbnail" for="Beta">
  50 + <label style="cursor:pointer" class="thumbnail radius-border stage-thumbnail" for="Beta">
50 51 <img class="stage-img stage-growth" src="images/growth-stage.png" alt="Lights">
51 52 <div class="card-content f-family">
52 53 <p align="center">Growth</p>
... ...
... ... @@ -43,7 +43,7 @@
43 43 $scope.check = false;
44 44 $scope.numberCheck = false;
45 45 $scope.paymentResult = {};
46   - var BASE_URL = "http://139.59.68.74:4001/api";
  46 + var BASE_URL = "http://0.0.0.0:4001/api";
47 47 var data ={
48 48 "amount":$scope.payingAmnt,
49 49 "currency": "INR",
... ... @@ -117,7 +117,7 @@
117 117  
118 118 /*****THIS IS FOR STEP ONE FORM ******/
119 119 $scope.next = function() {
120   - var BASE_URL = "http://139.59.68.74:4001/api";
  120 + var BASE_URL = "http://0.0.0.0:4001/api";
121 121 $scope.data.status = null
122 122 if ($scope.data.stage == undefined || $scope.data.name == undefined || $scope.data.email == undefined || $scope.data.number == undefined || $scope.data.city == undefined) {
123 123 var x = document.getElementById("snackbar")
... ... @@ -182,7 +182,7 @@
182 182 setTimeout(function(){ x.className = x.className.replace("show", ""); }, 3000);
183 183 }else if($scope.data.name != undefined && $scope.data.email != undefined && $scope.data.number != undefined) {
184 184  
185   - var BASE_URL = "http://139.59.68.74:4001/api";
  185 + var BASE_URL = "http://0.0.0.0:4001/api";
186 186  
187 187 if($scope.data.identity == "student"){
188 188  
... ... @@ -207,7 +207,7 @@
207 207 });
208 208  
209 209 }
210   - var BASE_URL = "http://139.59.68.74:4001/api";
  210 + var BASE_URL = "http://0.0.0.0:4001/api";
211 211 console.log("BASE_URL",BASE_URL)
212 212 $scope.infoForm = true;
213 213 console.log("sdasdasdsa");
... ... @@ -608,7 +608,7 @@
608 608 scotchApp.controller('verifyController', function($scope, $http, $location) {
609 609  
610 610 $scope.pendingPaymentId = $location.absUrl().split('=')[1]
611   - var BASE_URL = "http://139.59.68.74:4001/api";
  611 + var BASE_URL = "http://0.0.0.0:4001/api";
612 612 $http({
613 613 method : "GET",
614 614 url : BASE_URL+'/applicants/'+$scope.pendingPaymentId,
... ... @@ -633,7 +633,7 @@
633 633  
634 634 $scope.pendingPaymentId = '';
635 635  
636   - var BASE_URL = "http://139.59.68.74:4001/api";
  636 + var BASE_URL = "http://0.0.0.0:4001/api";
637 637  
638 638 $scope.update = function(){
639 639  
... ...