Files
danbooru/app/views/maintenance/user/deletions/show.html.erb
evazion 6a984de3d5 views: refactor page titles.
Refactor `page_title` helper to automatically include site name.
2020-01-25 01:52:18 -06:00

30 lines
874 B
Plaintext

<% page_title "Delete Account" %>
<div id="c-maintenance-user-deletions">
<div id="a-show" class="prose">
<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>