diff --git a/css/custom.css b/css/custom.css index ae5ca4c..b5700e2 100644 --- a/css/custom.css +++ b/css/custom.css @@ -663,6 +663,18 @@ stroke-dashoffset:0 text-align: center; } +.icon-circle-o { + background: rgba(89, 89, 89, 0.92); + border-radius: 50%; + width: 30px; + height: 30px; + position: absolute; + left: 0px; + margin-top: 4px; + color: #fff; + text-align: center; +} + .icon-circle-l { background: rgba(89, 89, 89, 0.92); border-radius: 50%; diff --git a/pages/registration.html b/pages/registration.html index 65611ea..8cccee3 100644 --- a/pages/registration.html +++ b/pages/registration.html @@ -105,21 +105,21 @@
assignment_ind
- +
Error ! Please fill in all fields.
assignment_ind
- +
Error ! Please fill in all fields.
email
- +
@@ -128,7 +128,7 @@ location_city - - - - - - - - + + + + + + + + -
-
- open_with -
- - -
+
Error ! Please fill in all fields.
phone
- +
-
+
Error ! Please fill in all fields.
link
- + + *
Explain your idea/product briefly @@ -295,22 +280,47 @@
thumb_up
-
-
+
+
+ open_with +
+ +
+
+
Error ! Please fill in all fields.
+
+ open_with +
+ +
+
Error ! Please fill in all fields.
business
- + + *
-
+
Error ! Please fill in all fields.
view_comfy
- + + *
@@ -322,7 +332,7 @@ launch
@@ -347,28 +357,28 @@
web
- +
Error ! Please fill in all fields.
link
- +
Error ! Please fill in all fields.
format_list_numbered
- +
Error ! Please fill in all fields.
view_stream
- +

Have you risen any funding yet?

@@ -376,10 +386,17 @@ payment
+
+
+
+ money +
+ +
-
-
-
- money +
+
+ code
- + + check + close +
- +
diff --git a/script.js b/script.js index 31d70ef..cdc64ba 100644 --- a/script.js +++ b/script.js @@ -462,9 +462,9 @@ $('.icon-circle-abc').css('background-color', 'rgb(66, 181, 73)'); } - $scope.addOther = false; - $scope.hideSelectBox = true; $scope.industrykeyPress = function() { + $scope.addOther = false; + $scope.hideSelectBox = true; $('.icon-circle-abcdefg').css('background-color', 'rgb(66, 181, 73)'); var e = document.getElementById("dataIndustry"); var dataIndustry = e.options[e.selectedIndex].value; @@ -474,6 +474,15 @@ } } + $scope.industryNamekeyPress = function(firstName) { + console.log("lastName==", firstName); + if (firstName == undefined) { + $('.icon-circle-o').css('background-color', 'rgb(102, 102, 102)'); + } else { + $('.icon-circle-o').css('background-color', 'rgb(66, 181, 73)'); + } + } + $scope.amountkeyPress = function() { $('.icon-circle-bc').css('background-color', 'rgb(66, 181, 73)'); } @@ -500,9 +509,9 @@ console.log("Val1:::", $scope.textCheck); var e = document.getElementById("fundingDiv"); var funding = e.options[e.selectedIndex].value; - $scope.Textshow = "yes"; + $scope.Textshow = "no"; if(funding == "yes") { - $scope.Textshow = "no"; + $scope.Textshow = "yes"; console.log("Val:::", $scope.Textshow); } @@ -522,7 +531,7 @@ $scope.phonekeyPress = function(number) { console.log("number", number); - if (number == undefined) { + if (number == undefined || number == '') { $('.icon-circle-e').css('background-color', 'rgb(102, 102, 102)'); } else { $('.icon-circle-e').css('background-color', 'rgb(66, 181, 73)'); @@ -547,7 +556,7 @@ } $scope.linkedInkeyPress = function(technology) { - if (technology == undefined) { + if (technology == undefined || technology == '') { $('.icon-circle-h').css('background-color', 'rgb(102, 102, 102)'); } else { $('.icon-circle-h').css('background-color', 'rgb(66, 181, 73)'); @@ -572,7 +581,7 @@ } $scope.websitekeyPress = function(prototype) { - if (prototype == undefined) { + if (prototype == undefined || prototype == '') { $('.icon-circle-k').css('background-color', 'rgb(102, 102, 102)'); } else { $('.icon-circle-k').css('background-color', 'rgb(66, 181, 73)'); @@ -580,7 +589,7 @@ } $scope.employeekeyPress = function(market) { - if (market == undefined) { + if (market == undefined || market == '') { $('.icon-circle-l').css('background-color', 'rgb(102, 102, 102)'); } else { $('.icon-circle-l').css('background-color', 'rgb(66, 181, 73)'); @@ -588,7 +597,7 @@ } $scope.annualkeyPress = function(risk) { - if (risk == undefined) { + if (risk == undefined || risk == '') { $('.icon-circle-m').css('background-color', 'rgb(102, 102, 102)'); } else { $('.icon-circle-m').css('background-color', 'rgb(66, 181, 73)'); @@ -596,7 +605,7 @@ } $scope.revenuekeyPress = function(team) { - if (team == undefined) { + if (team == undefined || team == '') { $('.icon-circle-n').css('background-color', 'rgb(102, 102, 102)'); } else { $('.icon-circle-n').css('background-color', 'rgb(66, 181, 73)');