Posted by:.

2 replies on “How to put additional info in the JIRA login page

  1. Try this:
    1.- Go to set the Announcement Banner –> Set to Public
    2.- Paste a code like this:

    function changelogin( ) {
    var pathname = window.location.pathname;
    if (pathname == “/login.jsp”) {
    //Write your custom HTML
    document.getElementById(‘sign-up-hint’).innerHTML = `Welcome people to our Super JIRA!
    any HTML code here…
    `;
    //Or … redirect the page
    document.location.href=”/secure/Dashboard.jspa”;
    }
    }

    setTimeout(function() { changelogin(); }, 1);

    Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s