How to Hide "Can't access your account?" Link
The content on this page is a customisation. It is not supported by Atlassian Support. Please comment below with additional tips!
Administrator might want to hide the forgot password link from the log-in page to ensure that only JIRA administrator that could reset users password without enabling "External User Management" option.
In order to do this, please try the following steps
- If using JIRA 4.0.2 or earlier:
Unzip<jira-install>/atlassian-jira/WEB-INF/classes/com/atlassian/jira/plugin/atlassian-bundled-plugins.zip
. - If using JIRA 4.1 or later:
Unzip<jira-install>/atlassian-jira/WEB-INF/classes/atlassian-bundled-plugins.zip
. - Unzip
<jira-install>/atlassian-jira/WEB-INF/classes/atlassian-bundled-plugins.zip
. - Unzip
jira-gadgets-plugin-x.jar
. - Inside of the jar file is
/gadgets/login.xml
, the definition for the login gadget. Find the following lines
var rememberMe = AJS.$("#rememberme"), forgotPassword = AJS.$("#forgotpassword"); if (!login.allowCookies) {
Modify it to:
var rememberMe = AJS.$("#rememberme"), forgotPassword = AJS.$("#forgotpassword"); forgotPassword.hide(); if (!login.allowCookies) {
- Zipped it back
- Restart JIRA
Last modified on Jul 27, 2012
Powered by Confluence and Scroll Viewport.