Sha256: ad71cf009ea5c91e6e72cdafdffabe0fd8baf1134f1ea4adb7973f944b93f348
Contents?: true
Size: 758 Bytes
Versions: 6
Compression:
Stored size: 758 Bytes
Contents
<%- @title = p_("MultiAuth", "Update password") -%> <h1><%=h @title %></h1> <%- form_for(:edit_form, @edit_form, :url => {:action => "update_password"}) { |f| -%> <table> <tr> <th><%=h f.label(:email) %></th> <td><%=h @email_credential.email %></td> </tr> <tr> <th><%=h f.label(:password) %></th> <td> <div><%= f.password_field(:password, :size => 20) %></div> <div><%= f.password_field(:password_confirmation, :size => 20) %></div> <%= error_message_on(:edit_form, :password) %> </td> </tr> </table> <div><%= submit_tag(p_("MultiAuth", "Update")) %></div> <%- } -%> <%- unless production? -%> <div class="debug"> <%= error_messages_for(:edit_form) %> </div> <%- end -%>
Version data entries
6 entries across 6 versions & 2 rubygems