Files
danbooru/app/views/user_name_change_requests/new.html.erb
2013-04-28 00:04:52 -07:00

22 lines
622 B
Plaintext

<h1>Name Change Request</h1>
<p>You can request a name change but it must be approved. Factors that go into consideration include your upload and update history, and your user feedback.</p>
<%= error_messages_for "change_request" %>
<%= form_tag(user_name_change_requests_path, :class => "simple_form") do %>
<div class="input">
<label for="desired_name">Desired Name</label>
<%= text_field_tag "desired_name" %>
</div>
<div class="input">
<label for="desired_name">Reason</label>
<%= text_field_tag "reason" %>
</div>
<div class="input">
<%= submit_tag "Submit" %>
</div>
<% end %>