Add the ability to hide "Forgot your password?" link in the login page.

XMLWordPrintable

    • Type: Suggestion
    • Resolution: Unresolved
    • None
    • Component/s: Applications
    • None
    • 7

      Problem

      customize the login page presented by Crowd to no longer display the "Forgot your password?" link, as it's causing confusion for their end-users.

      Suggestion

      Add the ability to hide it in the > Look and feel page.

      Workaround

      Adding a custom JavaScript into the login.jsp can help to hide the password reset link as a workaround:

      1. Locate and backup <crowd-install>/crowd-webapp/console/login.jsp
      2. Modify the login.jsp and add the following script into the <head> section
        <script>
        window.addEventListener("load", function() {
          document.querySelector("a[href='#/forgot-password']").style.display = "none";
        });
        </script>
        
      3. Save the file
      4. Refresh Crowd's login page to see the change
        Crowd restart is not required for the change to take effect

            Assignee:
            Unassigned
            Reporter:
            Mark M (Inactive)
            Votes:
            4 Vote for this issue
            Watchers:
            7 Start watching this issue

              Created:
              Updated: