new.html.haml 1.1 KB

1234567891011121314151617
  1. - content_for :page_title do
  2. = t('auth.register')
  3. = simple_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
  4. = render 'shared/error_messages', object: resource
  5. = f.simple_fields_for :account do |ff|
  6. = ff.input :username, autofocus: true, placeholder: t('simple_form.labels.defaults.username'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.username') }
  7. = f.input :email, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
  8. = f.input :password, autocomplete: 'off', placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password') }
  9. = f.input :password_confirmation, autocomplete: 'off', placeholder: t('simple_form.labels.defaults.confirm_password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_password') }
  10. .actions
  11. = f.button :button, t('auth.register'), type: :submit
  12. .form-footer= render 'auth/shared/links'