mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-21 19:37:45 +00:00
Improve accessibility on the login page
This commit is contained in:
7
.changes/unreleased/Fixed-20251113-120125.yaml
Normal file
7
.changes/unreleased/Fixed-20251113-120125.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
kind: Fixed
|
||||||
|
body: |
|
||||||
|
Improve accessibility on login page
|
||||||
|
time: 2025-11-13T12:01:25.488478771+01:00
|
||||||
|
custom:
|
||||||
|
Issue: ""
|
||||||
|
SchemaChange: No schema change
|
||||||
@@ -1 +1 @@
|
|||||||
<img class="logo" src="{{ asset('build/images/logo-chill-outil-accompagnement_white.png') }}">
|
<img class="logo" alt="{{ 'login_page.logo_alt'|trans }}" src="{{ asset('build/images/logo-chill-outil-accompagnement_white.png') }}">
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#}
|
#}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="{{ app.request.locale }}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<title>
|
<title>
|
||||||
@@ -35,10 +35,10 @@
|
|||||||
|
|
||||||
<form method="POST" action="{{ path('login_check') }}">
|
<form method="POST" action="{{ path('login_check') }}">
|
||||||
<label for="_username">{{ 'Username'|trans }}</label>
|
<label for="_username">{{ 'Username'|trans }}</label>
|
||||||
<input type="text" name="_username" value="{{ last_username }}" />
|
<input type="text" name="_username" value="{{ last_username }}" id="_username" />
|
||||||
<br/>
|
<br/>
|
||||||
<label for="_password">{{ 'Password'|trans }}</label>
|
<label for="_password">{{ 'Password'|trans }}</label>
|
||||||
<input type="password" name="_password" />
|
<input type="password" name="_password" id="_password" />
|
||||||
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}" />
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}" />
|
||||||
<br/>
|
<br/>
|
||||||
<button type="submit" name="login">{{ 'Login'|trans }}</button>
|
<button type="submit" name="login">{{ 'Login'|trans }}</button>
|
||||||
|
|||||||
@@ -975,3 +975,6 @@ multiselect:
|
|||||||
editor:
|
editor:
|
||||||
switch_to_simple: Éditeur simple
|
switch_to_simple: Éditeur simple
|
||||||
switch_to_complex: Éditeur riche
|
switch_to_complex: Éditeur riche
|
||||||
|
|
||||||
|
login_page:
|
||||||
|
logo_alt: "Logo de Chill"
|
||||||
|
|||||||
Reference in New Issue
Block a user