Search code examples
reactjsauthenticationloopbackadmin-on-restreact-admin

How can the admin-on-rest project will have user registration page?


There is any sample project to have user registration page with working REST API? For example, loopback backend API will offer registering new user, verifying email, retrieve forgotten password, etc.


Solution

  • The pages themselves should be added with custom routes.

    Regarding the REST API, you'll have to refer to your backend API documentation and use whatever is recommended to communicate with it (fetch, axios, etc.).

    However, from this point, there will be nothing specific to react-admin.