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
62a7ea44
Commit
62a7ea44
authored
Sep 15, 2017
by
Nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create a job HT022
parent
92e59846
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
90 additions
and
3 deletions
+90
-3
common.css
cmsWebApp/webroot/css/common.css
+60
-0
invite_users.jsp
cmsWebApp/webroot/extensions/adminportal/invite_users.jsp
+1
-1
page_admin_home.jsp
cmsWebApp/webroot/extensions/adminportal/page_admin_home.jsp
+28
-1
sign_up.jsp
cmsWebApp/webroot/extensions/adminportal/sign_up.jsp
+1
-1
No files found.
cmsWebApp/webroot/css/common.css
View file @
62a7ea44
...
...
@@ -2499,6 +2499,66 @@ a.forgot-pass {
height
:
16px
;
border
:
solid
4px
#03ac66
;
}
.main-dashboard-content
{
position
:
relative
;
}
.main-welcome-popup
{
border-radius
:
2px
;
background-color
:
#ffffff
;
box-shadow
:
0
0
30px
5px
rgba
(
0
,
0
,
0
,
0.2
);
border
:
1px
solid
#e8e8eb
;
width
:
500px
;
margin
:
0
auto
;
text-align
:
center
;
padding
:
0
;
}
.main-welcome-popup
h2
{
font-size
:
22px
;
font-weight
:
600
;
color
:
#4a4a4a
;
margin
:
38px
0
22px
;
}
.main-welcome-popup
p
{
font-size
:
16px
;
font-weight
:
300
;
line-height
:
1.56
;
text-align
:
center
;
color
:
#4a4a4a
;
padding
:
0
60px
;
}
.create-y-f-job
{
width
:
100%
;
border-top
:
1px
solid
#ededef
;
margin-top
:
35px
;
padding
:
27px
0
;
}
.create-y-f-job
a
{
border-radius
:
100px
;
background-color
:
#03a0e7
;
display
:
inline-block
;
width
:
280px
;
height
:
60px
;
font-size
:
15px
;
font-weight
:
600
;
text-align
:
center
;
color
:
#ffffff
;
line-height
:
60px
;
}
.overlayer-dark
::before
{
background
:
rgba
(
0
,
0
,
0
,
0.6
)
none
repeat
scroll
0
0
;
bottom
:
0
;
content
:
""
;
height
:
100%
;
left
:
0
;
position
:
fixed
;
right
:
0
;
top
:
0
;
width
:
100%
;
z-index
:
3
;
}
.welcome-pop-top
{
margin-top
:
10%
;
}
/*Dashboard Page End*/
/*All Jobs Page*/
...
...
cmsWebApp/webroot/extensions/adminportal/invite_users.jsp
View file @
62a7ea44
...
...
@@ -8,7 +8,7 @@
<oneit:dynIncluded>
<%
String nextPage = WebUtils.getArticleByShortCut(process.getTransaction(), WebUtils.ADMIN_HOME).getLink(request);
String nextPage = WebUtils.getArticleByShortCut(process.getTransaction(), WebUtils.ADMIN_HOME).getLink(request)
+ "?showModal=true"
;
Company company = (Company) process.getAttribute("Company");
Debug.assertion(company != null, "Invalid company user in admin portal");
...
...
cmsWebApp/webroot/extensions/adminportal/page_admin_home.jsp
View file @
62a7ea44
...
...
@@ -17,8 +17,20 @@
String shortlistPage = jobsArticle.getLink(request, CollectionUtils.mapEntry("cms.rm", WebUtils.APPLICANTS_SHORTLIST).toMap());
String homePage = WebUtils.getSamePageInRenderMode(request, "Page");
String jobsPage = jobsArticle.getLink(request, CollectionUtils.mapEntry("cms.rm", "Page").toMap());
boolean showModal = request.getParameter("showModal") != null ? Boolean.parseBoolean(request.getParameter("showModal")) : false;
%>
<%
if(showModal)
{
%>
<script>
$(document).ready(function(){
$('#welcomepopup').modal('show');
});
</script>
<%
}
%>
<oneit:form name="editJob" method="post" enctype="multipart/form-data">
<div class="dashboard-content-area">
<div class="dashboard-first-part">
...
...
@@ -102,4 +114,18 @@
</div>
</div>
</oneit:form>
<div class="modal fade" id="welcomepopup" role="dialog">
<div class="modal-dialog welcome-pop-top">
<div class="modal-body main-welcome-popup">
<h2>Welcome to your Dashboard!</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a porta ex, ac suscipit quam. Donec aliquam hendrerit odio, et vestibulum turpis porttitor u phasellus nec velit in nibh eleifend.</p>
<div class="create-y-f-job">
<a href="<%= jobsArticle.getLink(request, CollectionUtils.mapEntry("cms.rm", WebUtils.CREATE_JOB).toMap()) %>">
Create your first job
</a>
</div>
</div>
</div>
</div>
</oneit:dynIncluded>
\ No newline at end of file
cmsWebApp/webroot/extensions/adminportal/sign_up.jsp
View file @
62a7ea44
...
...
@@ -76,7 +76,7 @@
<div class="main-box-layout login-box">
<oneit:dynInclude page="/extensions/adminportal/inc/company_user_data.jsp" data="<%= CollectionUtils.EMPTY_MAP%>" CompanyUser="<%= companyUser %>"/>
<oneit:button value="S
end
" name="send" cssClass="box-btn send-btn"
<oneit:button value="S
ign up
" name="send" cssClass="box-btn send-btn"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", "sign_in.jsp?sent=true")
.mapEntry(NotificationUtils.NOTIFICATION_MSG_PARAM, "emailSent")
.mapEntry("Company", company)
...
...
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