Sha256: 98f74ecf4862067e4308db3711ce1fdc5f683ff44e86065c80a5b1d4b3e1e424
Contents?: true
Size: 1.02 KB
Versions: 34
Compression:
Stored size: 1.02 KB
Contents
<div id="login"> <h2><%= active_admin_application.site_title(self) %> <%= title t('active_admin.devise.sign_up.title') %></h2> <% scope = Devise::Mapping.find_scope!(resource_name) %> <%= render partial: "active_admin/devise/shared/error_messages", resource: resource %> <%= active_admin_form_for(resource, as: resource_name, url: send(:"#{scope}_registration_path"), html: { id: "registration_new" }) do |f| f.inputs do resource.class.authentication_keys.each_with_index { |key, index| f.input key, label: t('active_admin.devise.'+key.to_s+'.title'), input_html: { autofocus: index.zero? } } f.input :password, label: t('active_admin.devise.password.title') f.input :password_confirmation, label: t('active_admin.devise.password_confirmation.title') end f.actions do f.action :submit, label: t('active_admin.devise.login.submit'), button_html: { value: t('active_admin.devise.sign_up.submit') } end end %> <%= render partial: "active_admin/devise/shared/links" %> </div>
Version data entries
34 entries across 34 versions & 2 rubygems