Dhruv Pal:
Basically i want liferay to do all back end work so i am using Liferay _user table
I had a similar scenario. I created a login hook for overriding the login.jsp of the Liferay login portlet. I changed the look and feel of it and included the original login.jsp by doing this -
1<liferay-util:buffer var="html">
2 <liferay-util:include page="/html/portlet/login/login.portal.jsp" />
3</liferay-util:buffer>
4 <%=html %>
Note : the name of the login.jsp changes to login.portal.jsp if overriding it,
This way I got Liferay authentication mechanism to work on my custom login page. Hope, this helps you .
-cheers
Please sign in to flag this as inappropriate.