You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
1.3 KiB

  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. .input-with-append
  7. = ff.input :username, autofocus: true, placeholder: t('simple_form.labels.defaults.username'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.username'), :autocomplete => 'off' }
  8. .append
  9. = "@#{site_hostname}"
  10. = f.input :email, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.email'), :autocomplete => 'off' }
  11. = f.input :password, placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password'), :autocomplete => 'off' }
  12. = f.input :password_confirmation, placeholder: t('simple_form.labels.defaults.confirm_password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.confirm_password'), :autocomplete => 'off' }
  13. .actions
  14. = f.button :button, t('auth.register'), type: :submit
  15. %p.hint.subtle-hint=t('auth.agreement_html', rules_path: about_more_path, terms_path: terms_path)
  16. .form-footer= render 'auth/shared/links'