#How to create a new, custom navigation page? (register page)

5 messages · Page 1 of 1 (latest)

rose crane
#

I want to create a custom React page to let more users register themselves. The page has to be public (no auth required). I'll create an endpoint to handle creating the new user, but I don't know how to add a new custom page to the admin panel.

unreal basinBOT
white hound
#
// payload.config.ts
{
  // ...
  admin: {
    components: {
      views: {
        MyCustomView: {
          Component: MyCustomView,
          path: '/my-custom-view',
        },
      },
    },
  },
}
#

These may be helpful @rose crane