Sha256: 90c2a195e9142e8fce11a263590f44b0996c9bd7c04baa2cdb5cf47d77f4e9f4
Contents?: true
Size: 959 Bytes
Versions: 1
Compression:
Stored size: 959 Bytes
Contents
<h2>Sign up</h2> <%= simple_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> <%= f.error_notification %> <div class="form-inputs"> <%= f.input :name, required: true, autofocus: true %> <%= f.input :username, required: true %> <%= f.input :email, required: true, input_html: { autocomplete: "email" }%> <%= f.input :password, required: true, hint: ("#{@minimum_password_length} characters minimum" if @minimum_password_length), input_html: { autocomplete: "new-password" } %> <%= f.input :password_confirmation, required: true, input_html: { autocomplete: "new-password" } %> </div> <div class="form-actions"> <%= f.button :submit, "Sign up", class: "btn btn-primary" %> </div> <% end %> <%= render "devise/shared/links" %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
archangel-0.4.0 | app/views/devise/registrations/new.html.erb |