Hello,
Try to delete yarn.lock
file and run yarn
command and then npm start
Thanks
Hi,
I apologize if I misunderstood your case, can you please elaborate in detail on what you expect?
regards,
Hi,
You may use command to install abp cli, mention your version
dotnet tool install -g volo.abp.cli --version 8.2.2
thanks
Hello,
Answer to your first question is basically login activity is handle at server side and not at client side. ABP uses separate Authentication server which is responsible for handling authentication and authorization. The Blazor-based Login page is part of the authentication server, which is a separate application from the Angular client-side application.
Account module takes care of login activity. please refer for more info https://abp.io/docs/latest/modules/account#login
If you want to customize Login page at angular side please refer https://academy.hiretechteam.com/blog/createCustomLoginPageAbp/
I hope you get the required info.
Thanks,
Hello,
Please check out the previous ticket https://abp.io/support/questions/3187/redirect-to-login-page-with-returnUrl-does-not-work-after-login if it helps you
thanks
Hello,
Basically, Registration is done through the Authentication Server under the Account module https://abp.io/docs/latest/modules/account-pro#register-page. That's why when you log in through public website or Host website it will redirect to Auth server. Auth server is responsible for logging in and registering. If you want to customize the flow of registration then you need to customize at your own as per your requirements. For that you may check code of Identity Module and Account module.
Thanks,
Hello,
Yes you can redirect to the Register page from the public web directly for that you need to create one Register
button like
<a href="https://localhost:44371/Account/Register">Register</a>
In the given URL update your Authentication server port number and give it a try.
Thanks,
Hi,
Still you are getting same error?
Hello,
please check similar issue https://abp.io/support/questions/6570/Fail-to-download-commercial-nuget-packages-while-restoring
Thanks