Files
danbooru/app/views/maintenance/user/passwords/edit.html.erb
BrokenEagle 31d3215dad Fix page controller and action IDs
- Also fix affected CSS and JS files
2017-12-28 10:20:12 -08:00

16 lines
489 B
Plaintext

<div id="c-maintenance-user-passwords">
<div id="a-edit">
<h1>Change Password</h1>
<%= simple_form_for @user do |f| %>
<%= f.input :old_password, :as => :password, :input_html => {:autocomplete => "off"} %>
<%= f.input :password, :label => "New password", :input_html => {:autocomplete => "off"} %>
<%= f.button :submit, "Submit" %>
<% end %>
</div>
</div>
<% content_for(:page_title) do %>
Change Password - <%= Danbooru.config.app_name %>
<% end %>