app/authentication/client/forgot_password.html
<template name="ForgotPassword">
<h3>Forgot Your Password?</h3>
<br />
<div>Enter your email address to reset your password</div>
<br />
<form action="/forgot" id="forgotPasswordForm" method="post" class="form-horizontal">
<div class="form-group">
<label for="email" class="col-sm-1 control-label">Email</label>
<div class="col-sm-2">
<input id="forgotPasswordEmail" type="email" name="email" class="form-control" placeholder="Email Address" />
</div>
</div>
<div class="col-sm-offset-1">
<button type="submit" class="btn btn-primary">Reset</button>
</div>
</form>
</template>