Ajout de la traduction (#15)

Co-authored-by: hugo.pradier2 <hugo.pradier2@etu.uca.fr>
Co-authored-by: clfreville2 <clement.freville2@etu.uca.fr>
Reviewed-on: https://codefirst.iut.uca.fr/git/clement.freville2/herbarium/pulls/15
Reviewed-by: Clément FRÉVILLE <clement.freville2@etu.uca.fr>
Co-authored-by: Hugo PRADIER <hugo.pradier2@etu.uca.fr>
Co-committed-by: Hugo PRADIER <hugo.pradier2@etu.uca.fr>
This commit is contained in:
Hugo PRADIER
2024-06-13 08:46:30 +02:00
committed by Clément FRÉVILLE
parent ccb2b541ea
commit 8a1edeb938
31 changed files with 1919 additions and 94 deletions

View File

@@ -1,6 +1,6 @@
{% extends 'base.html.twig' %}
{% block title %}Log in!{% endblock %}
{% block title %}{{ 'log_in'|trans }}{% endblock %}
{% block body %}
<form method="post">
@@ -10,17 +10,17 @@
{% if app.user %}
<div class="mb-3">
You are logged in as {{ app.user.userIdentifier }}, <a href="{{ path('app_logout') }}">Logout</a>
You are logged in as {{ app.user.userIdentifier }}, <a href="{{ path('app_logout') }}">{{ 'logout'|trans }}</a>
</div>
{% endif %}
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
<h1 class="h3 mb-3 font-weight-normal">{{ 'sign_in'|trans }}</h1>
<div class="mb-3">
<label for="username">Email</label>
<input type="email" value="{{ last_username }}" name="_username" id="username" class="form-control" autocomplete="email" required autofocus>
</div>
<div class="mb-3">
<label for="password">Password</label>
<label for="password">{{ 'password'|trans }}</label>
<input type="password" name="_password" id="password" class="form-control" autocomplete="current-password" required>
</div>
@@ -34,16 +34,16 @@
<div class="checkbox mb-3">
<label>
<input type="checkbox" name="_remember_me"> Remember me
<input type="checkbox" name="_remember_me">{{ 'remember_me'|trans }}
</label>
</div>
#}
<button class="btn btn-primary" type="submit">
Sign in
{{ 'sign_in'|trans }}
</button>
<a class="btn btn-secondary" href="{{ path('app_register') }}">
Sign up
{{ 'sign_up'|trans }}
</a>
</form>
{% endblock %}