.'s avatar
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 to Carol Jones Cancel reply