]> git.openstreetmap.org Git - rails.git/blob - app/views/user/lost_password.html.erb
Remove table from diary edit and refactor using new form styles
[rails.git] / app / views / user / lost_password.html.erb
1 <% content_for :heading do %>
2   <h1><%= t 'user.lost_password.heading' %></h1>
3 <% end %>
4
5 <p><%= t 'user.lost_password.help_text' %></p>
6
7 <%= form_tag :action => 'lost_password' do %>
8 <table>
9   <tr>
10     <td class="fieldName"><%= t 'user.lost_password.email address' %></td>
11     <td><%= text_field('user', 'email', {:size => 50, :maxlength => 255, :tabindex => 1} ) %></td>
12   </tr>
13   <tr>
14     <td></td>
15     <td class="submitButton"><input type="submit" value="<%= t'user.lost_password.new password button' %>" tabindex="2"></td>
16   </tr>
17 </table>
18 <% end %>