# Which Problems Are Solved - The previous monorepo in monorepo structure for the login app and its related packages was fragmented, complicated and buggy. - The process for building and testing the login container was inconsistent between local development and CI. - Lack of clear documentation as well as easy and reliable ways for non-frontend developers to reproduce and fix failing PR checks locally. # How the Problems Are Solved - Consolidated the login app and its related npm packages by moving the main package to `apps/login/apps/login` and merging `apps/login/packages/integration` and `apps/login/packages/acceptance` into the main `apps/login` package. - Migrated from Docker Compose-based test setups to dev container-based setups, adding support for multiple dev container configurations: - `.devcontainer/base` - `.devcontainer/turbo-lint-unit` - `.devcontainer/turbo-lint-unit-debug` - `.devcontainer/login-integration` - `.devcontainer/login-integration-debug` - Added npm scripts to run the new dev container setups, enabling exact reproduction of GitHub PR checks locally, and updated the pipeline to use these containers. - Cleaned up Dockerfiles and docker-bake.hcl files to only build the production image for the login app. - Cleaned up compose files to focus on dev environments in dev containers. - Updated `CONTRIBUTING.md` with guidance on running and debugging PR checks locally using the new dev container approach. - Introduced separate Dockerfiles for the login app to distinguish between using published client packages and building clients from local protos. - Ensured the login container is always built in the pipeline for use in integration and acceptance tests. - Updated Makefile and GitHub Actions workflows to use `--frozen-lockfile` for installing pnpm packages, ensuring reproducible installs. - Disabled GitHub release creation by the changeset action. - Refactored the `/build` directory structure for clarity and maintainability. - Added a `clean` command to `docks/package.json`. - Experimentally added `knip` to the `zitadel-client` package for improved linting of dependencies and exports. # Additional Changes - Fixed Makefile commands for consistency and reliability. - Improved the structure and clarity of the `/build` directory to support seamless integration of the login build. - Enhanced documentation and developer experience for running and debugging CI checks locally. # Additional Context - See updated `CONTRIBUTING.md` for new local development and debugging instructions. - These changes are a prerequisite for further improvements to the CI pipeline and local development workflow. - Closes #10276
ZITADEL TypeScript with Turborepo
This repository contains all TypeScript and JavaScript packages and applications you need to create your own ZITADEL Login UI.
⚠️ This repo and packages are in beta state and subject to change ⚠️
The scope of functionality of this repo and packages is under active development.
The @zitadel/client package is using @connectrpc/connect.
You can read the contribution guide on how to contribute. Questions can be raised in our Discord channel or as a GitHub issue.
Developing Your Own ZITADEL Login UI
We think the easiest path of getting up and running, is the following:
- Fork and clone this repository
- Rename the file .github/dependabot.example.yml to .github/dependabot.yml so you don't miss version and security updates.
- Run the ZITADEL Cloud login UI locally
- Make changes to the code and see the effects live on your local machine
- Study the rest of this README.md and get familiar and comfortable with how everything works.
- Decide on a way of how you want to build and run your login UI. You can reuse ZITADEL Clouds way. But if you need more freedom, you can also import the packages you need into your self built application.
Included Apps And Packages
login: The login UI used by ZITADEL Cloud, powered by Next.js@zitadel/client: shared client utilities for node and browser environments@zitadel/proto: Protocol Buffers (proto) definitions used by ZITADEL projects
Each package and app is 100% TypeScript.
Login
The login is currently in a work in progress state. The goal is to implement a login UI, using the session API of ZITADEL, which also implements the OIDC Standard and is ready to use for everyone.
In the first phase we want to have a MVP login ready with the OIDC Standard and a basic feature set. In a second step the features will be extended.
This list should show the current implementation state, and also what is missing. You can already use the current state, and extend it with your needs.
Features list
-
Local User Registration (with Password)
-
User Registration and Login with external Provider
- GitHub
- GitHub Enterprise
- GitLab
- GitLab Enterprise
- Azure
- Apple
- Generic OIDC
- Generic OAuth
- Generic JWT
- LDAP
- SAML SP
-
Multifactor Registration an Login
- Passkeys
- TOTP
- OTP: Email Code
- OTP: SMS Code
-
Password Change/Reset
-
Domain Discovery
-
Branding
-
OIDC Standard
- Authorization Code Flow with PKCE
- AuthRequest
hintUserId - AuthRequest
loginHint - AuthRequest
prompt- Login
- Select Account
- Consent
- Create
- Scopes
- `openid email profile address``
offline accessurn:zitadel:iam:org:idp:id:{idp_id}urn:zitadel:iam:org:project:id:zitadel:audurn:zitadel:iam:org:id:{orgid}urn:zitadel:iam:org:domain:primary:{domain}
- AuthRequest UI locales
Flow diagram
This diagram shows the available pages and flows.
Note that back navigation or retries are not displayed.
flowchart TD
A[Start] --> register
A[Start] --> accounts
A[Start] --> loginname
loginname -- signInWithIDP --> idp-success
loginname -- signInWithIDP --> idp-failure
idp-success --> B[signedin]
loginname --> password
loginname -- hasPasskey --> passkey
loginname -- allowRegister --> register
passkey-add --passwordAllowed --> password
passkey -- hasPassword --> password
passkey --> B[signedin]
password -- hasMFA --> mfa
password -- allowPasskeys --> passkey-add
password -- reset --> password-set
email -- reset --> password-set
password-set --> B[signedin]
password-change --> B[signedin]
password -- userstate=initial --> password-change
mfa --> otp
otp --> B[signedin]
mfa--> u2f
u2f -->B[signedin]
register -- password/passkey --> B[signedin]
password --> B[signedin]
password-- forceMFA -->mfaset
mfaset --> u2fset
mfaset --> otpset
u2fset --> B[signedin]
otpset --> B[signedin]
accounts--> loginname
password -- not verified yet -->verify
register-- withpassword -->verify
passkey-- notVerified --> verify
verify --> B[signedin]
You can find a more detailed documentation of the different pages here.
Custom translations
The new login uses the SettingsApi to load custom translations.
Translations can be overriden at both the instance and organization levels.
To find the keys more easily, you can inspect the HTML and search for a data-i18n-key attribute, or look at the defaults in /apps/login/locales/[locale].ts.

Tooling
- TypeScript for static type checking
- ESLint for code linting
- Prettier for code formatting
Useful Commands
make login-quality- Check the quality of your code against a production build without installing any dependencies besides Dockerpnpm generate- Build proto stubs for the client packagepnpm dev- Develop all packages and the login apppnpm build- Build all packages and the login apppnpm clean- Clean up allnode_modulesanddistfolders (runs each package's clean script)
Learn more about developing the login UI in the contribution guide.
Versioning And Publishing Packages
Package publishing has been configured using Changesets. Here is their documentation for more information about the workflow.
The GitHub Action needs an NPM_TOKEN and GITHUB_TOKEN in the repository
settings. The Changesets bot should also be installed on the GitHub repository.
Read the changesets documentation for more information about this automation
Run Login UI
To run the application make sure to install the dependencies with
pnpm install
then generate the GRPC stubs with
pnpm generate
To run the application against a local ZITADEL instance, run the following command:
pnpm run-zitadel
This sets up ZITADEL using docker compose and writes the configuration to the file apps/login/.env.local.
Alternatively, use another environment
You can develop against any ZITADEL instance in which you have sufficient rights to execute the following steps. Just create or overwrite the file `apps/login/.env.local` yourself. Add your instances base URL to the file at the key `ZITADEL_API_URL`. Go to your instance and create a service user for the login application. The login application creates users on your primary organization and reads policy data. For the sake of simplicity, just make the service user an instance member with the role `IAM_OWNER`. Create a PAT and copy it to the file `apps/login/.env.local` using the key `ZITADEL_SERVICE_USER_TOKEN`.The file should look similar to this:
ZITADEL_API_URL=https://zitadel-tlx3du.us1.zitadel.cloud
ZITADEL_SERVICE_USER_TOKEN=1S6w48thfWFI2klgfwkCnhXJLf9FQ457E-_3H74ePQxfO3Af0Tm4V5Xi-ji7urIl_xbn-Rk
Start the login application in dev mode:
pnpm dev
Open the login application with your favorite browser at localhost:3000.
Change the source code and see the changes live in your browser.
Make sure the application still behaves as expected by running all tests
pnpm test
To satisfy your unique workflow requirements, check out the package.json in the root directory for more detailed scripts.
Run Login UI Acceptance tests
To run the acceptance tests you need a running ZITADEL environment and a component which receives HTTP requests for the emails and sms's. This component should also be able to return the content of these notifications, as the codes and links are used in the login flows. There is a basic implementation in Golang available under the sink package.
To setup ZITADEL with the additional Sink container for handling the notifications:
pnpm run-sink
Then you can start the acceptance tests with:
pnpm test:acceptance
Deploy to Vercel
To deploy your own version on Vercel, navigate to your instance and create a service user. Then create a personal access token (PAT), copy and set it as ZITADEL_SERVICE_USER_TOKEN, then navigate to your instance settings and make sure it gets IAM_OWNER permissions. Finally set your instance url as ZITADEL_API_URL. Make sure to set it without trailing slash.