@@ -240,11 +240,11 @@ export const { handle } = SvelteKitAuth({
240240 * We've customized key pages to provide a consistent user experience that
241241 * matches our application's design system and branding.
242242 *
243- * ### Sign-in Page (`/auth/signin `)
243+ * ### Sign-in Page (`/auth/login `)
244244 * - **Purpose**: Provides a branded sign-in experience for ZITADEL authentication
245245 * - **Features**: Error message display, CSRF protection, callback URL handling
246246 * - **Design**: Matches application's design system with consistent styling
247- * - **Preview**: Visit `/auth/signin ` or `/auth/signin ?error=AccessDenied`
247+ * - **Preview**: Visit `/auth/login ` or `/auth/login ?error=AccessDenied`
248248 *
249249 * ### Error Page (`/auth/error`)
250250 * - **Purpose**: Displays authentication errors with user-friendly messages
@@ -258,10 +258,10 @@ export const { handle } = SvelteKitAuth({
258258 *
259259 * ```
260260 * # Sign-in page with different error states
261- * http://<hostname>/auth/signin
262- * http://<hostname>/auth/signin ?error=AccessDenied
263- * http://<hostname>/auth/signin ?error=Configuration
264- * http://<hostname>/auth/signin ?error=OAuthAccountNotLinked
261+ * http://<hostname>/auth/login
262+ * http://<hostname>/auth/login ?error=AccessDenied
263+ * http://<hostname>/auth/login ?error=Configuration
264+ * http://<hostname>/auth/login ?error=OAuthAccountNotLinked
265265 *
266266 * # Error page with different error types
267267 * http://<hostname>/auth/error?error=Configuration
@@ -276,7 +276,7 @@ export const { handle } = SvelteKitAuth({
276276 *
277277 * ```typescript
278278 * // pages: {
279- * // signIn: '/auth/signin ',
279+ * // signIn: '/auth/login ',
280280 * // error: '/auth/error',
281281 * // },
282282 * ```
@@ -287,7 +287,7 @@ export const { handle } = SvelteKitAuth({
287287 * ## Available Page Options
288288 *
289289 * You can customize any of these Auth.js pages:
290- * - `signIn`: Custom sign-in page (default: `/auth/signin `)
290+ * - `signIn`: Custom sign-in page (default: `/auth/login `)
291291 * - `signOut`: Custom sign-out confirmation page
292292 * - `error`: Custom error page (default: `/auth/error`)
293293 * - `verifyRequest`: Email verification page (for magic links)
@@ -297,7 +297,7 @@ export const { handle } = SvelteKitAuth({
297297 * (sign-in and error) since we use external OAuth authentication.
298298 */
299299 pages : {
300- signIn : '/auth/signin ' ,
300+ signIn : '/auth/login ' ,
301301 error : '/auth/error' ,
302302 } ,
303303
0 commit comments