Files
danbooru/app/views/maintenance/user/deletions/show.html.erb
2013-06-05 15:14:06 -07:00

32 lines
921 B
Plaintext

<div id="c-maintenance-user-deletions">
<div id="a-show">
<h1>Delete Account</h1>
<p>You can delete your account. This will not actually remove your account from the database, but it will do the following things:</p>
<ul>
<li>Rename your account to a generic string</li>
<li>Scramble your password</li>
<li>Remove all your favorites</li>
<li>Blank out your settings (including email)</li>
</ul>
<p>You must enter your password to delete your account.</p>
<%= form_tag(maintenance_user_deletion_path, :method => :delete, :class => "simple_form") do %>
<div class="input">
<label>Password</label>
<%= password_field_tag :password %>
</div>
<div class="input">
<%= submit_tag "Submit" %>
</div>
<% end %>
</div>
</div>
<% content_for(:page_title) do %>
Delete Account - <%= Danbooru.config.app_name %>
<% end %>