Feature: Remind admins not to create local users.
/* Inject dialog into new user link */
jQuery(document).ready(function($) {
$('.page-admin-people #squeeze > div > div > ul > li > a').on('click', function(){
return user_create_message();
});
$('.page-admin-people-create input').on('click' , function(){
return user_create_message();
});
function user_create_message(){
alert('Do not add users here. Have them click the login link in the footer or contact druliner@uw.edu.');
return false;
}
});
Feature: Remind admins not to create local users.