Commit 610f6f9d by chenith Committed by Harsh Shah

Updated email found notification with. Styles updated for sign in btn.

parent bc5e77e8
......@@ -15,7 +15,6 @@
if(request.getParameter("JobID")!=null)
{
job = Job.getJobByID(transaction, Long.parseLong((String) request.getParameter("JobID")));
process.setAttribute("Job", job);
}
//to process candidate verification
......@@ -60,14 +59,22 @@
}
});
// $('.reset-pw-btn').attr('disabled', 'disabled');
// $('.reset-pw').keyup(function() {
// if($(this).val() != '') {
// $('.reset-pw-btn').removeAttr('disabled');
// } else {
// $('.reset-pw-btn').attr('disabled', 'disabled');
// }
// });
$('.reset-pw-btn').attr('disabled', 'disabled');
$('.reset-pw').keyup(function() {
var empty = false;
$('input.reset-pw').each(function() {
if ($( this ).val() == '') {
empty = true;
}
});
if(empty) {
$('.reset-pw-btn').attr('disabled', 'disabled');
} else {
$('.reset-pw-btn').removeAttr('disabled');
}
});
});
</script>
<style>
......@@ -75,6 +82,27 @@
opacity: 0.6;
background-color: #0582ba;
}
#email-div {
position: relative;
}
#right-mark {
width: 30px;
height: 30px;
border-radius: 30px;
position: absolute;
top: 50%;
right: -14px;
background-color: green;
}
#right-mark img {
width: 20px;
height: 20px;
display: block;
margin: auto auto;
}
</style>
<%
......@@ -113,9 +141,12 @@
</ul>
<div class="box-br-line"><span></span></div>
<div class="box-label">Or sign in via email</div>
<div class="form-group text-left">
<div class="form-group text-left" id="email-div">
<label>Email Address</label>
<oneit:ormInput obj="<%= job %>" type="text" attributeName="Email" cssClass="form-control second-style" />
<oneit:recalcClass htmlTag="div" classScript="job.isEmailFound() ? 'show': 'hide'" job="<%= job %>" class="right-mark">
<span id="right-mark"><img src="images/right-mark.svg"/></span>
</oneit:recalcClass>
</div>
<oneit:recalcClass htmlTag="div" classScript="job.isEmailFound() ? 'show': 'hide'" job="<%= job %>">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment