/ Published in: PHP
Place this code in the template.php file of your custom Zen sub-theme to create a friendly reminder that this site uses their LDAP password. In this example, we use Novell Directory Services as our LDAP provider.
Expand |
Embed | Plain Text
<?php function phptemplate_user_login($form){ $form['name']['#description'] = t('Enter your NOVELL username.'); $form['pass']['#description'] = t('Enter your NOVELL password.'); return drupal_render($form); } ?>
Comments
Subscribe to comments
You need to login to post a comment.

Nice, thanks man!