cancel
Showing results for 
Search instead for 
Did you mean: 

Custom Login Page

Former Member
0 Kudos

Hi,

I have a requirement to create a custom login page instead of standard UME login page to access a webdynpro applicaiton.I need to write a login.jsp and do the login settings for it.Can anyone guide me through this process.i dont want to change login.par .This will be a custom login page which is specific to only one webdynpro application.

regards

swathi

Accepted Solutions (0)

Answers (2)

Answers (2)

piyush_kumar6
Active Contributor
0 Kudos

Hi swathi,

use below code for creatting jsp page for custome login.

<FORM name="logonForm" method="post" action=" /irj/servlet/prt/portal

/prtroot/com.sap.portal.navigation.portallauncher.default">

<input name="login_submit" type="hidden" value="on">

<input type="hidden" name="login_do_redirect" value="1" />

<input name="j_authscheme" type="hidden" value="default">

<table border="0" align="left" valign="top">

<tr>

<td >

User Id

</td>

<td width="183" height="20">

<input name="j_user" type="text" value="">

</td>

</tr>

<tr>

<td width="161" height="20">

Password

</label>

</td>

<td width="183" height="20">

<input name="j_password" type="password">

</td>

</tr>

<tr>

<td colspan="2" height="20">&nbsp; </td>

</tr>

<tr>

<td colspan="2">

<input value="Log on">

</td>

</tr>

</table>

</form>

you can use action="/irj/portal/login" also

If you have any doubt then let me know.

Regards,

Piyush

Former Member
0 Kudos

Hi,

I do not think you can customize the login page for 1 particular application or user. It can be customized by changing the login.par only and that change will be reflected for all the applications and users. After you have logged in to the portal, its then only you can customize the theme as per your requirements that is whether make it user-specific or application-specific.

Regards.

Rajat

Former Member
0 Kudos

Hi rajat,

Thanks for th Reply.But iam not looking to use the login.par for my applciation instead i need to create a logon servlet that could authenticate the user on j2ee engine and bypass the UME login screen to access the webdynpro application which is a standalone application.We dont want to integrate this applciation in the portal framework.

regards

swathi