Edit Login Text

How do I change the text on the login screen from email to username? I only want to change the text.

You're Welcome :)

Thank you! It worked.

In the javascript Editor, use jquery

$(document).on('knack-scene-render.any', function(event, scene) {
$('label[for=email]').html('username');
});

This will change the label on every screen. If you only want the change on a specific scene then use:

$(document).on('knack-view-render.view_YOUR VIEW', function{
$('label[for=email]').html('New Label Here');
});