2023-08-06 17:26:56 -07:00
|
|
|
<h2>Sign up</h2>
|
|
|
|
|
2024-04-08 04:02:54 -07:00
|
|
|
<%= form_with(model: @auth_user, method: :post) do |f| %>
|
|
|
|
<%= render "devise/shared/error_messages", resource: @auth_user %>
|
2023-08-06 17:26:56 -07:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Choose a username, and an email address we can use to reset your password.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<strong>Do not use your Neopets or email password here.</strong>
|
|
|
|
We don't expect a security breach, and we hash your password securely.
|
|
|
|
Regardless, if anything happens, we want there to be absolutely no harm done.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :name, 'Username' %><br />
|
|
|
|
<%= f.text_field :name, autofocus: true, autocomplete: "username" %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :email %><br />
|
|
|
|
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :password %>
|
|
|
|
<% if @minimum_password_length %>
|
|
|
|
<em>(<%= @minimum_password_length %> characters minimum)</em>
|
|
|
|
<% end %><br />
|
|
|
|
<%= f.password_field :password, autocomplete: "new-password" %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<%= f.label :password_confirmation %><br />
|
|
|
|
<%= f.password_field :password_confirmation, autocomplete: "new-password" %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="actions">
|
|
|
|
<%= f.submit "Sign up" %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= render "devise/shared/links" %>
|