Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
610f6f9d
Commit
610f6f9d
authored
Aug 15, 2017
by
chenith
Committed by
Harsh Shah
Sep 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated email found notification with. Styles updated for sign in btn.
parent
bc5e77e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
10 deletions
+41
-10
sign_in.jsp
cmsWebApp/webroot/extensions/applicantportal/sign_in.jsp
+41
-10
No files found.
cmsWebApp/webroot/extensions/applicantportal/sign_in.jsp
View file @
610f6f9d
...
@@ -15,7 +15,6 @@
...
@@ -15,7 +15,6 @@
if(request.getParameter("JobID")!=null)
if(request.getParameter("JobID")!=null)
{
{
job = Job.getJobByID(transaction, Long.parseLong((String) request.getParameter("JobID")));
job = Job.getJobByID(transaction, Long.parseLong((String) request.getParameter("JobID")));
process.setAttribute("Job", job);
}
}
//to process candidate verification
//to process candidate verification
...
@@ -60,14 +59,22 @@
...
@@ -60,14 +59,22 @@
}
}
});
});
// $('.reset-pw-btn').attr('disabled', 'disabled');
$('.reset-pw-btn').attr('disabled', 'disabled');
// $('.reset-pw').keyup(function() {
$('.reset-pw').keyup(function() {
// if($(this).val() != '') {
var empty = false;
// $('.reset-pw-btn').removeAttr('disabled');
// } else {
$('input.reset-pw').each(function() {
// $('.reset-pw-btn').attr('disabled', 'disabled');
if ($( this ).val() == '') {
// }
empty = true;
// });
}
});
if(empty) {
$('.reset-pw-btn').attr('disabled', 'disabled');
} else {
$('.reset-pw-btn').removeAttr('disabled');
}
});
});
});
</script>
</script>
<style>
<style>
...
@@ -75,6 +82,27 @@
...
@@ -75,6 +82,27 @@
opacity: 0.6;
opacity: 0.6;
background-color: #0582ba;
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>
</style>
<%
<%
...
@@ -113,9 +141,12 @@
...
@@ -113,9 +141,12 @@
</ul>
</ul>
<div class="box-br-line"><span></span></div>
<div class="box-br-line"><span></span></div>
<div class="box-label">Or sign in via email</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>
<label>Email Address</label>
<oneit:ormInput obj="<%= job %>" type="text" attributeName="Email" cssClass="form-control second-style" />
<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>
</div>
<oneit:recalcClass htmlTag="div" classScript="job.isEmailFound() ? 'show': 'hide'" job="<%= job %>">
<oneit:recalcClass htmlTag="div" classScript="job.isEmailFound() ? 'show': 'hide'" job="<%= job %>">
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment