Add a link to the Service Portal on the logout screen of ServiceNow

Jyoti33
Tera Contributor

How to add a add a login link to the Service Portal on the logout screen of ServiceNow

where can we find the page to add the link

needed to add link on page external_logout_complete.do

3 REPLIES 3

Community Alums
Not applicable

Hi @Jyoti33 ,

It's currently hardcoded. You can create a new UI Page named external_logout_complete to override it if you like.

it's a really simple page. Here's the current content, which you could probably copy/paste into a UI Page and modify:



<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="true" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<table class="wide" cellpadding="0" cellspacing="0" border="0">
<tr class="header">
<td>
<table border="0" cellspacing="0" cellpadding="2">
<tr class="header">
<td width="100%">
<div id="form_header" class="caption" style="margin-top: 2px;">${gs.getMessage('Logout succeeded')}</div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<div>
<h3>${gs.getMessage('Logout successful')}</h3>
</div>
</td>
</tr>
<tr>
<td>
<div>
${gs.getMessage('You have successfully logged out.')}


</div>
</td>
</tr>
</table>
</j:jelly>

Also, Refer to the workaround :https://magander.se/servicenow-login-redirected-to-external_logout_complete-do/

 

Hi @Community Alums ,

 

Thanks for replying.

Where can we find external_logout_complete.do page in ServiceNow?