Hi Anthony,
(Found the answer @ https://forum.mendix.com/link/questions/7427 by Julio)
You can do this, by Adding a HTMLSnippet from MarketPlace.
Than will add a class for your password edit and signIn Button, set up the jQuery snippet like:
$(document).ready( function () { $(".searchBox").keyup(function(event){ if(event.keyCode == 13){ $(".searchBtn").click(); /Trigger the click action (search button) when user presses enter./ } }); });