Files
hydra-2fa/templates/base.html.twig

40 lines
1.3 KiB
Twig
Raw Normal View History

2025-09-18 10:35:25 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
{% block stylesheets %}
{% endblock %}
{% block javascripts %}
{% block importmap %}{{ importmap('app') }}{% endblock %}
{% endblock %}
2025-09-19 11:28:56 +02:00
<style>
body {
display: flex;
justify-content: center; /* centre horizontalement */
align-items: center; /* centre verticalement */
min-height: 100vh; /* prend toute la hauteur de la fenêtre */
margin: 0; /* évite les marges par défaut */
}
div {
text-align: center; /* centre le contenu dans le bloc */
}
</style>
2025-09-18 10:35:25 +02:00
</head>
<body>
2025-09-19 11:28:56 +02:00
{% block body %}
{% form_theme form 'bootstrap_5_layout.html.twig' %}
<div syle="">
{{ form_start(form) }}
{{ form_errors(form.code) }}
{{ form_row(form.code) }}
{{form_end(form)}}
</div>
{% endblock %}
2025-09-18 10:35:25 +02:00
</body>
</html>