|
|
|
@ -24,21 +24,34 @@
|
|
|
|
|
.screenshot-with-signup
|
|
|
|
|
.mascot= image_tag 'fluffy-elephant-friend.png'
|
|
|
|
|
|
|
|
|
|
= simple_form_for(@user, url: user_registration_path) do |f|
|
|
|
|
|
= f.simple_fields_for :account do |ff|
|
|
|
|
|
= ff.input :username, autofocus: true, placeholder: t('simple_form.labels.defaults.username'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.username') }
|
|
|
|
|
- if @open_registrations
|
|
|
|
|
= simple_form_for(@user, url: user_registration_path) do |f|
|
|
|
|
|
= f.simple_fields_for :account do |ff|
|
|
|
|
|
= ff.input :username, autofocus: true, placeholder: t('simple_form.labels.defaults.username'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.username') }
|
|
|
|
|
|
|
|
|
|
= f.input :email, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
|
|
|
|
|
= f.input :password, autocomplete: "off", placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password') }
|
|
|
|
|
= 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') }
|
|
|
|
|
= f.input :email, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
|
|
|
|
|
= f.input :password, autocomplete: "off", placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password') }
|
|
|
|
|
= 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') }
|
|
|
|
|
|
|
|
|
|
.actions
|
|
|
|
|
= f.button :button, t('about.get_started'), type: :submit
|
|
|
|
|
.actions
|
|
|
|
|
= f.button :button, t('about.get_started'), type: :submit
|
|
|
|
|
|
|
|
|
|
.info
|
|
|
|
|
= link_to t('auth.login'), new_user_session_path, class: 'webapp-btn'
|
|
|
|
|
·
|
|
|
|
|
= link_to t('about.about_this'), about_more_path
|
|
|
|
|
.info
|
|
|
|
|
= link_to t('auth.login'), new_user_session_path, class: 'webapp-btn'
|
|
|
|
|
·
|
|
|
|
|
= link_to t('about.about_this'), about_more_path
|
|
|
|
|
- else
|
|
|
|
|
.closed-registrations-message
|
|
|
|
|
- if @closed_registrations_message.blank?
|
|
|
|
|
%p= t('about.closed_registrations')
|
|
|
|
|
- else
|
|
|
|
|
= @closed_registrations_message.html_safe
|
|
|
|
|
.info
|
|
|
|
|
= link_to t('auth.login'), new_user_session_path, class: 'webapp-btn'
|
|
|
|
|
·
|
|
|
|
|
= link_to t('about.other_instances'), 'https://github.com/tootsuite/mastodon/blob/master/docs/Using-Mastodon/List-of-Mastodon-instances.md'
|
|
|
|
|
·
|
|
|
|
|
= link_to t('about.about_this'), about_more_path
|
|
|
|
|
|
|
|
|
|
%h3= t('about.features_headline')
|
|
|
|
|
|
|
|
|
|