The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

31 lines
1.6 KiB

  1. - content_for :page_title do
  2. = t('auth.register')
  3. - content_for :header_tags do
  4. = render partial: 'shared/og'
  5. = simple_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
  6. = render 'shared/error_messages', object: resource
  7. - if @invite.present? && @invite.autofollow?
  8. .fields-group{ style: 'margin-bottom: 30px' }
  9. %p.hint{ style: 'text-align: center' }= t('invites.invited_by')
  10. = render 'application/card', account: @invite.user.account
  11. = f.simple_fields_for :account do |ff|
  12. .input-with-append
  13. = 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' }
  14. .append
  15. = "@#{site_hostname}"
  16. = f.input :email, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.email'), :autocomplete => 'off' }
  17. = f.input :password, placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password'), :autocomplete => 'off' }
  18. = 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' }
  19. = f.input :invite_code, as: :hidden
  20. .actions
  21. = f.button :button, t('auth.register'), type: :submit
  22. %p.hint.subtle-hint=t('auth.agreement_html', rules_path: about_more_path, terms_path: terms_path)
  23. .form-footer= render 'auth/shared/links'