Quantcast
Channel: Grassroots Oracle
Viewing all articles
Browse latest Browse all 405

Customising APEX 5.0 workspace login

$
0
0
A few years ago Peter Raganitsch showed us how to customise the workspace login page in APEX 4.x.

I think it's even easier in APEX 5.0, though it looks pretty slick already.

Here is the solution I shared on Slack a few weeks ago.
<script type="text/javascript">
$( document ).ready(function() {
$('.a-Login-title').text("Scott's workspace").css('color','darkgreen');

// In order of reference
// Oracle header
// Down arrow
// Second page fluff
$('.a-Login-message, .a-Header--login, .a-Login-slideNav, .a-Login-slide--secondary').css('display','none');
// Orange message bar
$('.a-Login-message').text('Reminder: use your windows credentials');

// Hide reset password
$('.a-Login-links').text('')

// Change logo, list in /i/apex_ui/css/Core.css
$('.a-Login-logo').addClass('gi-icon-admin-dashboards').removeClass('gi-icon-apex-logo-icon');

});
</script>

Paste this in the same location in the INTERNAL workspace, under Manage Instance -> Login message.

And voila!
Customised Workspace Login
Perhaps use this to indicate environment details.

I believe some others have been tackling easy options to replace the icon. I'll share how I made the login page to my Boggex game at some point.

Viewing all articles
Browse latest Browse all 405

Trending Articles