Your data, your control. Fully open source, authentication and authorization. No lock-ins. Deployment in Railway in 120 seconds || Spin a docker image as a micro-service in your infra. Built in login page and Admin panel out of the box.
Hi! I don't have a current deployment of Authorizer up and running, but I did want to note some accessibility issues with the demo Log In and Sign Up forms (which I assume are using the latest version of Authorizer).
The forms are missing key attributes like #ids and for=. These are important for accessibility (see: Labeling Controls and Accessibility concerns > Labels). It will also make creating style customization with CSS easier in the future.
For instance, the following markup for the name field:
This will allow the field to be in focus when a user clicks on the label, and a screen reader will read out the label when the user is focused on the form input (source).
Hi! I don't have a current deployment of Authorizer up and running, but I did want to note some accessibility issues with the demo Log In and Sign Up forms (which I assume are using the latest version of Authorizer).
The forms are missing key attributes like #ids and
for=
. These are important for accessibility (see: Labeling Controls and Accessibility concerns > Labels). It will also make creating style customization with CSS easier in the future.For instance, the following markup for the name field:
... could be:
This will allow the field to be in focus when a user clicks on the label, and a screen reader will read out the label when the user is focused on the form input (source).