Hi @BPry
As customizing the default page I am unable to see the title section, Please find the below,
<script>
// Customizations - pass in values below. Used in GlobalProtect login page
// and also getsoftwarepage
// Change customization of 'GlobalProtect Portal Home Page' to get uniform look
var favicon = ''; // URL to the icon displayed in browser's address bar
var logo = ''; // URL to the company logo
var bg_color = ''; // Background color
var gp_portal_name = ''; // Text under company logo
var gp_portal_name_color = ''; // Color for text under company logo
var error_text_color = ''; // Text color for logon failure message
</script>
</head>
<body>
<div class="loginscreen_logo">
<div id="logo">
<img src="portal/images/logo-pan-48525a.svg"
onerror="this.onerror=null; this.src='portal/images/logo-pan-48525a.png'"
alt="">
</div>
<div id="activearea">
<div id="heading">GlobalProtect Portal</div>
<div id="formdiv">
<pan_form/>
</div>
</div>
</div>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="portal/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>
But in the same I am able to see the heading section from browser inspect tool ,
Please help me how to check from default page.
... View more