{% extends 'index.html.twig' %}
{% block content %}
<div class="bg_blue main-container">
</div>
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script src="https://js.stripe.com/v3"></script>
<script type="text/javascript" nonce="{{ csp_nonce('script') }}">
let isLoggedUser = '{{ loggedUser }}' // used in appointment.js
let needRegister = '{{ needRegister }}' // used in appointment.js
let gon = '{{ app.session.get('gon', false) }}' // used in appointment.js
let paypalID = '{{ paypal_client_id }}'; // used in payment.js
const STRIPE_PUBLIC_ID = '{{ stripe_public_id }}'; // used in payment.js
const BASE_HOST = '{{ app.request.schemeAndHttpHost }}'; // used in payment.js
const REINIT_STEP = '{{ reinit }}'; // used in payment.js
const LOGOUT = '{{ logout }}'; // used in payment.js
let maxStep = '{{ app.session.get('maxStep', 1) }}';
let LOCALE = '{{ app.request.locale }}';
</script>
{{ encore_entry_script_tags('rdv') }}
{% endblock %}