mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 19:11:11 +01:00
740f8a95a9
* Add consumable invites * Add UI for generating invite codes * Add tests * Display max uses and expiration in invites table, delete invite * Remove unused column and redundant validator - Default follows not used, probably bad idea - InviteCodeValidator is redundant because RegistrationsController checks invite code validity * Add admin setting to disable invites * Add admin UI for invites, configurable role for invite creation - Admin UI that lists everyone's invites, always available - Admin setting min_invite_role to control who can invite people - Non-admin invite UI only visible if users are allowed to * Do not remove invites from database, expire them instantly
25 lines
1.4 KiB
Text
25 lines
1.4 KiB
Text
- content_for :page_title do
|
|
= t('auth.register')
|
|
|
|
- content_for :header_tags do
|
|
= render partial: 'shared/og'
|
|
|
|
= simple_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
|
= render 'shared/error_messages', object: resource
|
|
|
|
= f.simple_fields_for :account do |ff|
|
|
.input-with-append
|
|
= 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' }
|
|
.append
|
|
= "@#{site_hostname}"
|
|
|
|
= f.input :email, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.email'), :autocomplete => 'off' }
|
|
= f.input :password, placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password'), :autocomplete => 'off' }
|
|
= 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' }
|
|
= f.input :invite_code, as: :hidden
|
|
|
|
.actions
|
|
= f.button :button, t('auth.register'), type: :submit
|
|
|
|
%p.hint.subtle-hint=t('auth.agreement_html', rules_path: about_more_path, terms_path: terms_path)
|
|
.form-footer= render 'auth/shared/links'
|