Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8d58adc
fix(login): idp redirect (#10482)
peintnermax Aug 14, 2025
f41d828
fix(login): user discovery - ignore case for loginname, email (#10475)
peintnermax Aug 15, 2025
8cd5f9e
fix(loginV2): hide sign-in-with-idp if none are configured (#10402)
jonasbadstuebner Aug 15, 2025
f4c1bbb
fix(login): use `/logout/done` as success page, accept `post_logout_r…
peintnermax Aug 18, 2025
beb33ff
fix(login): use translation `title` key prop to set page title (#10537)
peintnermax Aug 22, 2025
5b0f326
fix(login): add email verification check before callback (#10516)
peintnermax Aug 25, 2025
e59baf5
fix(loginV2): Disable image optimization (#10508)
Tolsto Aug 25, 2025
cf34957
fix(login): CSP img-src to allow instance assets (#10579)
peintnermax Aug 27, 2025
2862486
feat(typescript): add i18n for input labels in Login V2 (#10233)
jmblab-adam Aug 29, 2025
31aad76
fix(login): integration tests failing due to React 19 SSR errors (#10…
peintnermax Sep 1, 2025
7775529
fix: Registration Form Legal Checkbox Logic (#10597)
peintnermax Sep 9, 2025
e9dac58
fix(login): MFA session validation to support multiple authentication…
peintnermax Sep 11, 2025
b75a3bc
chore(login): Remove Vercel Analytics from login application (#10701)
peintnermax Sep 11, 2025
68d7bdf
fix(login): Safari Cookie Issues in Development Mode (#10594)
peintnermax Sep 11, 2025
d1b2422
fix(login): remove image optimization entirely (#10702)
peintnermax Sep 22, 2025
b71b25d
chore(login): Extract auth flow utilities and eliminate RSC request i…
peintnermax Sep 22, 2025
d7fb210
fix(login): host utility to provide correct host behind proxies (#10770)
peintnermax Sep 23, 2025
5b3e7fa
fix(login): Organization domain scope, Support for External Passkey R…
peintnermax Sep 30, 2025
7b164cd
feat(rt): project repository (#10789)
muhlemmer Oct 1, 2025
4f60af1
fix(login): Redirect to IDP flow when password auth is disabled (#10839)
peintnermax Oct 7, 2025
77182de
chore: rehaul DevX (#10571)
eliobischof Oct 8, 2025
5e57d61
Synthetic merge to align histories
eliobischof Oct 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
NEXT_PUBLIC_BASE_PATH=/ui/v2/login
EMAIL_VERIFICATION=false
DEBUG=true
ZITADEL_API_URL=http://localhost:8080
ZITADEL_SERVICE_USER_TOKEN_FILE=../../login-client.pat
1 change: 1 addition & 0 deletions .env.prod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ZITADEL_SERVICE_USER_TOKEN_FILE=../../../../login-client.pat
6 changes: 0 additions & 6 deletions .env.test

This file was deleted.

2 changes: 2 additions & 0 deletions .env.test-integration
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
API_MOCK_STUBS_HOST=${DEVCONTAINER_LOGIN_API_MOCK_HOST:-localhost}
API_MOCK_STUBS_URL=http://${API_MOCK_STUBS_HOST}:22220/v1/stubs
4 changes: 4 additions & 0 deletions .env.test-integration-run-login
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ZITADEL_API_URL=http://${DEVCONTAINER_LOGIN_API_MOCK_HOST:-localhost}:22222
ZITADEL_SERVICE_USER_TOKEN=none
ZITADEL_SERVICE_USER_TOKEN_FILE=""
PORT=3001
6 changes: 6 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ module.exports = {
varsIgnorePattern: "^_" ,
}],
"no-undef": "off",
"no-restricted-imports": ["error", {
"paths": [{
"name": "next/image",
"message": "Use of next/image is forbidden. Use regular <img> elements instead."
}]
}],
},
parserOptions: {
ecmaVersion: "latest",
Expand Down
63 changes: 0 additions & 63 deletions .github/ISSUE_TEMPLATE/bug.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/ISSUE_TEMPLATE/docs.yaml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/ISSUE_TEMPLATE/improvement.yaml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/ISSUE_TEMPLATE/proposal.yaml

This file was deleted.

Binary file removed .github/custom-i18n.png
Binary file not shown.
21 changes: 0 additions & 21 deletions .github/dependabot.example.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/pull_request_template.md

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/close_pr.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/issues.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/workflows/release.yml

This file was deleted.

Loading