0

Is there a way to put custom text in our Login box?

We've just switched to LDAP authentication, which works great, but we want to put a label of sorts in the Login box that tells the users which login to use.

Running 8.3.46 on Linux.

Thanks!

Caio

flag

1 Answer

2

You can definitely do something like that with a BugMonkey script:

name:          Tweak login page
description:   Adds additional instructions to the login page
author:        Dane Bertram
version:       1.0.0.0

js:

$('table.miniLogOn h1.welcome')
.append('<div>Use your LDAP loginz, please!</div>');


css:

This isn't a particularly beautiful example, but hopefully it gives you the right idea. :)

Just be sure to mark that customization as "Requried" for the "Not logged in" user group.

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.