stormy-weather/views/forgot-password.erb
2012-02-15 19:26:56 -08:00

23 lines
708 B
Text

<h3 class="section-heading top">Forgot Password</h3>
<%== flash_message %>
<div class="section" style="margin: auto; width: 45%">
<p>Forgot your password eh? No sweat, these things happen.</p>
<form action="/forgot-password" method="post" id="forgot-password-form">
<table>
<tr>
<th><label for="email">Email</label></th>
<td><input id="email" type="email" name="email" size="40" placeholder="jane.doe@example.com" value="<%= @email %>"></td>
</tr>
<tr>
<th></th>
<td align="right">
<input type="submit" value="Reset my password">
<img src="/images/spinner.gif" id="spinner" style="display: none">
</td>
</tr>
</table>
</form>
</div>