diff --git a/docs/changelog/index.md b/docs/changelog/index.md index d595638c..ce413d8d 100644 --- a/docs/changelog/index.md +++ b/docs/changelog/index.md @@ -19,6 +19,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Fixed +* Support translation for login form placeholders by [@hasansezertasan](https://github.com/hasansezertasan) + in [#425](https://github.com/jowilf/starlette-admin/pull/425) * Update AuthMiddleware for Compatibility with Starlette >= 0.33 by [@jowilf](https://github.com/jowilf) in [#427](https://github.com/jowilf/starlette-admin/pull/427) * Fixes actions docstrings diff --git a/starlette_admin/templates/login.html b/starlette_admin/templates/login.html index 58b7e9b8..519e8b20 100644 --- a/starlette_admin/templates/login.html +++ b/starlette_admin/templates/login.html @@ -33,7 +33,7 @@

{{ _("Login to your account") }}

{% if form_errors and form_errors.has('username') %}
{{ form_errors.msg('username') }}
@@ -44,7 +44,7 @@

{{ _("Login to your account") }}

{% if form_errors and form_errors.has('password') %}
{{ form_errors.msg('password') }}