- Posts: 2
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
There is no template for that screen so you'll need to use JavaScript to modify it....how I can add introduction text and additional HTML to this?
$(document).ready(function(){ if($('#tokenmessage').length > 0 && $('#token').length > 0) { // Custom token message $('#tokenmessage').html('This is the custom token input screen message...'); // Custom token input label $('label[for="token"]').html('Custom Input Label: '); } });