28 lines
646 B
Twig
Executable File
28 lines
646 B
Twig
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Fiche de compte dynamique{% endblock %}</title>
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="bg-img"></div>
|
|
{% block navigation %}
|
|
{% include 'default/login-choices.html.twig' %}
|
|
{% endblock %}
|
|
<div class="container">
|
|
|
|
{% block body %}
|
|
<div class="well">
|
|
Votre caisse mobile en ligne
|
|
</div>
|
|
{% endblock %}
|
|
</div>
|
|
{% block javascripts %}
|
|
<script src="{{ asset('build/app.js') }}"></script>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|