<% if(rslt){ %><%-ejsext.DisplayInfo(rslt)%><% } else { %>
<div>
<div style="padding-bottom:10px;">Please enter your email address below, and a password reset email will be sent to you shortly.</div>
<%-ejsext.DisplayErrors(verrors)%>
<form method="post" class="<%=req.jshsite.instance%>_mlogin">
  <table>
    <tr>
      <td align="right">Email Address:</td>
      <td align="left"><input type="email" style="width:150px;" class="username" name="username" value="<%=fdata.username%>" /></td>
    </tr>
    <tr>
      <td></td>
      <td align="left"><input type="submit" class="button" value="Reset Password" /></td>
    </tr>
  </table>
</form>
<script type="text/javascript">
(function(jsh){
  var $ = jsh.$;
  var $form = jsh.$root('.<%=req.jshsite.instance%>_mlogin');

  $(document).ready(function() {
    $form.find(".username").focus().addClass('inputfocus');

    $form.find('input')
      .bind('focus', function() {
        $(this).addClass('inputfocus');
      }).bind('blur', function() {
        $(this).removeClass('inputfocus');
      });
  });
    
})(<%=req.jshsite.instance%>);
</script>
<style type="text/css">
.inputfocus
{
    border-width: 2px;
    border-color: Blue;
    border-style: solid;
}
</style>
</div>
<% } %>