Logins should start with least 2 characters and may consist of letters, numbers, or the underscore.


<%= form.text_field :login %>


<%= form.text_field :email %>


<%= form.text_field :display_name %>


Enter your desired password twice. It must be at least 5 characters.

<%= form.password_field :password %> (once)
<%= form.password_field :password_confirmation %> (and then again)