Sha256: 1855a741b796e186272b36f6599d381959c352d3c3887d3e2fe561a1faa2cf78

Contents?: true

Size: 967 Bytes

Versions: 2

Compression:

Stored size: 967 Bytes

Contents

 = within_admin_layout(title: "Register") do
  = simple_form_for(resource,
                    as: resource_name,
                    url: registration_path(resource_name),
                    wrapper: :horizontal_form) do |f|

    = custom_devise_error_messages!

    = f.input :given_name, input_html: { autofocus: true }, wrapper: :horizontal_medium
    = f.input :family_name, wrapper: :horizontal_medium
    = f.input :username, wrapper: :horizontal_small
    = f.input :email, wrapper: :horizontal_small
    = f.input :password,
              as: :password,
              input_html: { autocomplete: "off" },
              hint: "#{@minimum_password_length} characters minimum",
              wrapper: :horizontal_small
    = f.input :password_confirmation,
              as: :password,
              input_html: { autocomplete: "off" },
              wrapper: :horizontal_small
    = f.submit "Sign up", class: "button save"

  = render "devise/shared/links"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta9 app/views/renalware/devise/registrations/new.html.slim
renalware-core-2.0.0.pre.beta8 app/views/renalware/devise/registrations/new.html.slim