/ 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
Copy this code and paste it in your HTML
<?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); } ?>