Fix landing page sign up form ignoring username field
This commit is contained in:
parent
3ffa27e812
commit
433cb198fa
@ -5,6 +5,9 @@ class AboutController < ApplicationController
|
|||||||
|
|
||||||
def index
|
def index
|
||||||
@description = Setting.site_description
|
@description = Setting.site_description
|
||||||
|
|
||||||
|
@user = User.new
|
||||||
|
@user.build_account
|
||||||
end
|
end
|
||||||
|
|
||||||
def more
|
def more
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
.screenshot-with-signup
|
.screenshot-with-signup
|
||||||
.mascot= image_tag 'fluffy-elephant-friend.png'
|
.mascot= image_tag 'fluffy-elephant-friend.png'
|
||||||
|
|
||||||
= simple_form_for(:user, url: user_registration_path) do |f|
|
= simple_form_for(@user, url: user_registration_path) do |f|
|
||||||
= f.simple_fields_for :account do |ff|
|
= 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') }
|
= ff.input :username, autofocus: true, placeholder: t('simple_form.labels.defaults.username'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.username') }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user