Suddenly i can't find new customer form (signup form) in frontend for Magento 2.3.5-p2 and even when i am trying to go direct to the link https://www.domain.com/customer/account/create/ it redirect me tohttps://www.domain.com/customer/account/login/referer/
customer can't create new account. and signup form disabled.
Hello @alahnomi
Looks like you have installed a module which is causing it, as there is no such configuration in admin to do that.
You can disable modules which you think are causing it.
php bin/magento module:disable Module_Name
Or if you have customized anything from Magento_Customer module, please undo those changes and try.
Hope it helps !
Hi @alahnomi
You can customize login layout here:
vendor/magento/module-customer/view/frontend/layout/customer_account_login.xml
Account create layout:
vendor/magento/module-customer/view/frontend/layout/customer_account_create.xml
Override layout with your custom module first, then customise controller code according to your requirement.
It may help you to debug!
Thank you.