web/a11y: Associating labels with inputs#16119
Merged
GirlBossRush merged 1 commit intomainfrom Aug 21, 2025
Merged
Conversation
✅ Deploy Preview for authentik-docs canceled.
|
✅ Deploy Preview for authentik-integrations canceled.
|
37a52d6 to
144d377
Compare
5912b5d to
3d7cff0
Compare
1d9191b to
3d7cff0
Compare
9a37950 to
d01b0b9
Compare
3d7cff0 to
28353cc
Compare
✅ Deploy Preview for authentik-storybook canceled.
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #16119 +/- ##
==========================================
+ Coverage 92.41% 92.83% +0.42%
==========================================
Files 837 837
Lines 45253 45253
==========================================
+ Hits 41821 42012 +191
+ Misses 3432 3241 -191
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Contributor
|
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-5b8adfce3f54f70a5c3c73a002b6021c69a2a047
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)sAfterwards, run the upgrade commands from the latest release notes. Instructions for KubernetesAdd the following block to your authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-5b8adfce3f54f70a5c3c73a002b6021c69a2a047Afterwards, run the upgrade commands from the latest release notes. |
kensternberg-authentik
approved these changes
Aug 20, 2025
Contributor
kensternberg-authentik
left a comment
There was a problem hiding this comment.
A consistent set of fixes.
c7b61b5 to
d615dbb
Compare
web: Add correct ID to stage inputs.
d615dbb to
5b8adfc
Compare
kensternberg-authentik
added a commit
that referenced
this pull request
Aug 26, 2025
* main: providers/oauth2: avoid deadlock during session migration (#16361) lifecycle/aws: bump aws-cdk from 2.1025.0 to 2.1026.0 in /lifecycle/aws (#16352) core: bump github.com/stretchr/testify from 1.10.0 to 1.11.0 (#16357) core: bump axllent/mailpit from v1.27.5 to v1.27.6 in /tests/e2e (#16358) website/docs: fix missing trailing slash in vaultwarden documentation (#16348) root: fix security.md (#16345) root: update security.md with github reporting link (#16332) website/docs: 2025.8.1 release notes (#16343) packages/django-dramatiq-postgres: broker: fix various timing issues (#16340) website/docs: adds details to certificates doc (#16335) outposts: allow ingress path type configuration (#16339) core, web: update translations (#16321) outposts: fix service connection update task arguments (#16312) core: use email backend for test_email management command (#16311) core: bump astral-sh/uv from 0.8.12 to 0.8.13 (#16325) website: Move docs netlify.toml (#16320) website/docs: add link in 2025.8 rel notes to back-channel logout docs (#16306) packages/django-dramatiq-postgres: middleware: fix listening on hosts where ipv6 is not supported (#16308) website: Fix version origin detection, build-time URLs (#15774) web/a11y: Associating labels with inputs (#16119)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Details
Split off from #15894
This PR resolves a collection of accessibility issues in labels within flow interfaces. The primary change here is a migration away from
<ak-form-control />to two functional components ,AKLabelandAKFieldError.Together, they bring the
<label />and<input />element into the same DOM tree, allowing them to matchhtmlForandidattributes as a screen-reader friendly pairing.See also