Remove tables from lost password form

This commit is contained in:
Thomas Levine 2013-06-10 18:45:18 -04:00 committed by Tom Hughes
parent 677d129a2e
commit 22c80d21be

View file

@ -5,14 +5,9 @@
<p><%= t 'user.lost_password.help_text' %></p>
<%= form_tag :action => 'lost_password' do %>
<table>
<tr>
<td class="fieldName"><%= t 'user.lost_password.email address' %></td>
<td><%= text_field('user', 'email', {:size => 50, :maxlength => 255, :tabindex => 1} ) %></td>
</tr>
<tr>
<td></td>
<td class="submitButton"><input type="submit" value="<%= t'user.lost_password.new password button' %>" tabindex="2"></td>
</tr>
</table>
<div class="standard-form">
<label><%= t 'user.lost_password.email address' %></label>
<%= text_field('user', 'email', { :tabindex => 1} ) %>
<input type="submit" value="<%= t'user.lost_password.new password button' %>" tabindex="2">
</div>
<% end %>