on div click call otherAction code example
Example 1: on click jquery
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
Example 2: on div click call otherAction
<input type="button" value="Forgot Password" onclick="window.location.href('@Url.Action("ForgotPassword","Account")')" />