Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .idea/QA-tests.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

366 changes: 366 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

64 changes: 32 additions & 32 deletions Register.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

h1
{
font-size: 36px!important;
font-size: 36px!important;
color: #02569c !important;

}
Expand Down Expand Up @@ -36,11 +36,11 @@ font-size: 36px!important;

@media (max-width: 1200px ) and (min-width:768px)
{
.navbar-nav>li
{
margin-left: 0;
.navbar-nav>li
{
margin-left: 0;

}
}
}

@media (min-width: 700px ) and (max-width: 991px)
Expand All @@ -58,14 +58,14 @@ font-size: 36px!important;
border-radius: 0px;
color: #fff;
line-height: 24px;
display: inline-block;
display: inline-block;

}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > li > a:hover
{
background-color: #00579a !important;
background-color: #00579a !important;
color: #fff;
}

Expand All @@ -82,7 +82,7 @@ font-size: 36px!important;
padding-top: 10px;
padding-bottom: 10px;
color: #fff;
background: #2e2e2e;
background: #2e2e2e;

}

Expand Down Expand Up @@ -250,15 +250,15 @@ label
}

.form-group .form-control {
padding: 7px 12px;
border-color:#555;
box-shadow: none !important;
padding: 7px 12px;
border-color:#555;
box-shadow: none !important;
outline: none !important;
}

.form-control:focus {
box-shadow:none !important;
outline: 0 none !important;
outline: 0 none !important;
border-color:#555 !important;
}

Expand Down Expand Up @@ -293,7 +293,7 @@ label
}

.gridStyle {
/* border: 1px solid rgb(212,212,212);*/
/* border: 1px solid rgb(212,212,212);*/
width: 400px;
height: 800px
}
Expand Down Expand Up @@ -330,26 +330,26 @@ label

.contextshw
{
position:absolute;
position:absolute;
margin-top: -5px;
display: inline;
background-color: white;
color: black;
font-size: 15px;
z-index: 999999 !important;
}
.contextshw ul li
{
list-style: none;
margin: 5px;
}
.contextshw ul li
{
list-style: none;
margin: 5px;
}

.dropdown-menu > li:hover > ul{
.dropdown-menu > li:hover > ul{
position:absolute;
left:100% !important;
left:100% !important;
top: -2px;
background-color: rgba(101,183,234,.85) !important;
display:inline-block;
background-color: rgba(101,183,234,.85) !important;
display:inline-block;
}

.dropdown-menu > li:hover > ul >li > a:hover{
Expand All @@ -370,27 +370,27 @@ label
padding: 8px 15px;
}

.childmenu{
display: none;
list-style: none;
padding-left: 0px !important;
margin-top: 10px;
}
.childmenu{
display: none;
list-style: none;
padding-left: 0px !important;
margin-top: 10px;
}

#eid:hover + .tooltptext
{
display: block;
display: block;
Z-index:99999999 !important;
position:relative;
top:10%;
font-size: 12px;
border: 1px solid;
background-color: ghostwhite;
background-color: ghostwhite;
}

.tooltptext
{
display:none;
display:none;
}


Expand Down
20 changes: 8 additions & 12 deletions Register.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
/**
* Created by Sujith Alla on 4/22/2016.
*/

$(document).ready(function()

{

$("#secondpassword").keypress(function(evt)
{
if (evt.keyCode==13)
if (evt.keyCode===13)
{

var password1= document.getElementById("firstpassword").value;
Expand Down Expand Up @@ -37,10 +33,10 @@ $(document).ready(function()
})
$(document).on('click',function()
{
if ($("ul.ui-corner-all")[0])
{
$("ul.ui-corner-all")[0].parentElement.style.display="none";
}
if ($("ul.ui-corner-all")[0])
{
$("ul.ui-corner-all")[0].parentElement.style.display="none";
}

})

Expand All @@ -50,11 +46,11 @@ $(document).ready(function()
$.getJSON('https://restcountries.eu/rest/v1/all').success(function(data)
{

var cdd= $('#countries');
var cdd= $('#countries');
for ( var i=0; i< data.length;i++)
{
var countryname= data[i].name;
cdd.append($("<option></option>").attr("value",countryname).text(countryname));
cdd.append($("<option></option>").attr("value",countryname).text(countryname));
}

});
Expand All @@ -76,7 +72,7 @@ $(document).ready(function()
}).error(function(err)
{

// console.log(JSON.stringify(err));
// console.log(JSON.stringify(err));
});

$.getJSON('Skills.json').success(function(data)
Expand Down
Loading