Files
danbooru/app/views/maintenance/user/passwords/edit.html.erb
r888888888 1abdcb3cf3 fixes #2419
2015-06-30 13:21:39 -07:00

16 lines
468 B
Plaintext

<div id="c-users">
<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 %>