The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

22 řádky
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') }
  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') }
  11. = f.input :password, autocomplete: 'off', placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password') }
  12. = 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') }
  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'