Help Me make a custom login Page
I'm using Credential Provider for nextAuth I want to customise my login page
// To add a custom login page, you can use the pages option:
// pages/api/auth/[...nextauth].js
pages: {
signIn: '/auth/signin',
signOut: '/auth/signout',
error: '/auth/error', // Error code passed in query string as ?error=
verifyRequest: '/auth/verify-request', // (used for check email message)
newUser: '/auth/new-user' // New users will be directed here on first sign in (leave the property out if not of interest)
}