I am new to the Limesurvey community and I have been searching the manuals and forums to learn to edit the admin login screen. We are currently using version 2.5 Build 160620 preparing to upgrade to the latest supported version. Please see attached image (the highlighted areas are what I would like to change) and thank you for any assistance that you can provide.
You could create a custom admin theme
and add something like this in your new custom.js file (assuming you also want to change the target of the help link):
Code:
$(document).ready(function(){
if($('#loginform').length > 0) {
$('.login-title.login-content h3').text('Use your Titan Pass credentials to log in');
$('button[name="login_submit"]').nextAll('a:eq(0)')
.html('Forgot your local password?<br />Contact UDM Help Desk')
.attr('href', 'https://google.com')
.attr('target', '_blank');
}
});
Cheers,
Tony Partner Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Thank you for your response. I would like to edit the existing theme however, I cannot find the custom.js file. is there another file name/type that i can look up?