Sha256: c1f823bdca31290e1950a4830755e3bba4c340d9e0136800ca0932e776b4b3b8
Contents?: true
Size: 1.18 KB
Versions: 24
Compression:
Stored size: 1.18 KB
Contents
<div id="login_box"> <div id="alchemy_greeting"> <%= image_tag("alchemy/alchemy-logo.png", :style => "width: 240px; height: 70px") %> </div> <div class="login_signup_box"> <% if @user.errors.blank? %> <%= render_message do %> <h1><%= _t 'Password reset' %></h1> <p><%= _t 'Please enter a new password' %></p> <% end %> <% else %> <div id="errors" style="display: block"> <%= devise_error_messages! %> </div> <% end %> <%= form_for(:user, :url => password_path, :html => { :method => :put }) do |f| %> <table> <tr> <td class="label"><%= f.label :password, _t("New password") %></td> <td class="input"><%= f.password_field :password, :autofocus => true %></td> </tr> <tr> <td class="label"><%= f.label :password_confirmation, _t("Confirm new password") %></td> <td class="input"><%= f.password_field :password_confirmation %></td> </tr> <tr> <td colspan="2" class="submit"> <%= f.hidden_field :reset_password_token %> <%= f.button _t("Change password") %> </td> </tr> </table> <% end %> </div> </div>
Version data entries
24 entries across 24 versions & 2 rubygems