Commit c6903bf7 by Nilu

a) Remove the social media links from the Sign-In page

b)  Put the functionality of the sign-up-eap onto the standard sign-up page
parent 89bc962c
...@@ -114,12 +114,9 @@ ...@@ -114,12 +114,9 @@
<NODE name="sign_up_jsp" factory="Participant"> <NODE name="sign_up_jsp" factory="Participant">
<INHERITS factory="Named" nodename="CoreORMAdminNoPriv"/> <INHERITS factory="Named" nodename="CoreORMAdminNoPriv"/>
<!--
TODO: uncomment when plans and billing screens are available for all users
<FORM name="*.send" factory="Participant" class="performa.form.SendVerificationMailFP"> <FORM name="*.send" factory="Participant" class="performa.form.SendVerificationMailFP">
<AccountVerificationEmailer factory="Participant" class="oneit.email.ConfigurableArticleTemplateEmailer" templateShortcut="CompanyAccountVerificationMail"/> <AccountVerificationEmailer factory="Participant" class="oneit.email.ConfigurableArticleTemplateEmailer" templateShortcut="CompanyAccountVerificationMail"/>
</FORM> </FORM>
-->
</NODE> </NODE>
<!--TODO: delete when plans and billing screens are available for all users--> <!--TODO: delete when plans and billing screens are available for all users-->
......
...@@ -88,33 +88,41 @@ ...@@ -88,33 +88,41 @@
requestAttribs="<%= CollectionUtils.EMPTY_MAP%>"/> requestAttribs="<%= CollectionUtils.EMPTY_MAP%>"/>
</div> </div>
</oneit:form> </oneit:form>
<div class="box-br-line"><span></span></div> <%
<div class="box-label">Sign in using your social network of choice</div> // hiding social media login as per client request
if(false)
{
%>
<div class="box-br-line"><span></span></div>
<div class="box-label">Sign in using your social network of choice</div>
<oneit:form name="socialLogin" method="post"> <oneit:form name="socialLogin" method="post">
<ul class="social-login"> <ul class="social-login">
<li> <li>
<oneit:button value=" " name="linkedinOAuthLogin" skin="link" cssClass="social_login_btn" <oneit:button value=" " name="linkedinOAuthLogin" skin="link" cssClass="social_login_btn"
disabled="<%= Utils.linkedInAvailable() ? "false" : "true" %>" disabled="<%= Utils.linkedInAvailable() ? "false" : "true" %>"
requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>"> requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>">
<img src="<%= request.getContextPath() %>/images/login-linkedin-icon.svg" /> <img src="<%= request.getContextPath() %>/images/login-linkedin-icon.svg" />
</oneit:button> </oneit:button>
</li> </li>
<li> <li>
<oneit:button value=" " name="facebookOAuthLogin" skin="link" cssClass="social_login_btn" <oneit:button value=" " name="facebookOAuthLogin" skin="link" cssClass="social_login_btn"
disabled="<%= Utils.facebookAvailable() ? "false" : "true" %>" disabled="<%= Utils.facebookAvailable() ? "false" : "true" %>"
requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>"> requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>">
<img src="<%= request.getContextPath() %>/images/login-facebok-icon.svg" /> <img src="<%= request.getContextPath() %>/images/login-facebok-icon.svg" />
</oneit:button> </oneit:button>
</li> </li>
<li> <li>
<oneit:button value=" " name="googleOAuthLogin" skin="link" cssClass="social_login_btn" <oneit:button value=" " name="googleOAuthLogin" skin="link" cssClass="social_login_btn"
disabled="<%= Utils.googleAvailable() ? "false" : "true" %>" disabled="<%= Utils.googleAvailable() ? "false" : "true" %>"
requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>"> requestAttribs="<%= CollectionUtils.mapEntry ("nextPage", nextPage).toMap() %>">
<img src="<%= request.getContextPath() %>/images/login-google.png" /> <img src="<%= request.getContextPath() %>/images/login-google.png" />
</oneit:button> </oneit:button>
</li> </li>
</ul> </ul>
</oneit:form> </oneit:form>
<%
}
%>
</div> </div>
<%@ include file="inc/htmlfooter_nopriv.jsp" %> <%@ include file="inc/htmlfooter_nopriv.jsp" %>
\ No newline at end of file
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
opacity: 0.6; opacity: 0.6;
background-color: #0582ba; background-color: #0582ba;
} }
#overlay { /* #overlay {
position: fixed; position: fixed;
width: 100%; width: 100%;
height: 100%; height: 100%;
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
} }
.main-welcome-popup h2 { .main-welcome-popup h2 {
padding: 0 20px 0; padding: 0 20px 0;
} }*/
</style> </style>
<div class="hire-the-right-candi">Hire the right candidate</div> <div class="hire-the-right-candi">Hire the right candidate</div>
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
.toMap() %>"/> .toMap() %>"/>
</div> </div>
</oneit:form> </oneit:form>
<div id="overlay"> <!-- <div id="overlay">
<div class="modal-dialog welcome-pop-top"> <div class="modal-dialog welcome-pop-top">
<div class="modal-body main-welcome-popup"> <div class="modal-body main-welcome-popup">
<h2>Talentology will be available for sign up soon!</h2> <h2>Talentology will be available for sign up soon!</h2>
...@@ -124,6 +124,6 @@ ...@@ -124,6 +124,6 @@
</div> </div>
</div> </div>
</div> </div>
</div> </div>-->
<%@ include file="inc/htmlfooter_nopriv.jsp" %> <%@ include file="inc/htmlfooter_nopriv.jsp" %>
\ No newline at end of file
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