templates/_modal_app_promotion.html.twig line 1

Open in your IDE?
  1. <input type="hidden" id="user-id-app-promo" value="{{ app.user is defined ? app.user.id :''}}" />
  2. <input type="hidden" id="user-can-show-promotion"  value="{{user_can_show_promotion }}"/>
  3. <div id="modal-promo" class="modal fade" {{ stimulus_controller('mission--mobile') }}  tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
  4.     <div class="modal-dialog modal-dialog-centered" role="document">
  5.         <div class="modal-content">
  6.             <div class="modal-body p-0">
  7.                 <button {{ stimulus_action('mission--mobile', 'closeWeekModal', 'click') }} type="button" class="close" data-dismiss="modal" aria-label="Close">
  8.                     <span aria-hidden="true">&times;</span>
  9.                 </button>
  10.                 <img data-src="https://my-flow.fr/wp-content/uploads/2025/04/popup_01.jpg" loading="lazy" alt="Téléphone" class="phone">
  11.                 <div class="text-center">
  12.                     <h2>Soyez encore plus productifs<br>avec notre application mobile</h2>
  13.                     <p>Téléchargez l’application <strong>myFlow</strong> pour améliorer votre productivité, suivre vos projets et interagir avec nos experts, où que vous soyez.</p>
  14.                     <p class="d-none d-sm-block"><span class="bold">Scannez ce code</span> pour télécharger l'application 
  15.                     {# <span class="name-app" {{ stimulus_target('mission--mobile', 'appName') }} >Android</span> #}
  16.                     </p>
  17.                     <div class="qr-code d-none d-sm-block">
  18.                         <img {{ stimulus_target('mission--mobile', 'qrCodeImg') }} src="https://api.qrserver.com/v1/create-qr-code/?size=120x120&data=https://app.my-flow.fr/get-myflow-mobil-application" alt="QR Code">
  19.                     </div>
  20.                     <a href="https://app.my-flow.fr/get-myflow-mobil-application" class="btn btn-primary d-sm-none mt-8">Télécharger l'application</a>
  21.                     <div class="links">
  22.                         {# <a href="#" {{ stimulus_target('mission--mobile', 'platformToggle') }} {{ stimulus_action('mission--mobile', 'togglePlatform', 'click') }}>Je fonctionne sur <span class="name-app-init">iOS</span></a> #}
  23.                         <a href="{{ path('app_promotion_refuse_modal') }}" class="closed" data-dismiss="modal" aria-label="Close">Ne plus voir ce message</a>
  24.                     </div>
  25.                 </div>
  26.             </div>
  27.         </div>
  28.     </div>
  29. </div>