templates/refonte/Authentification/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
  3. <head>
  4.     <title>{% block title  %}{% endblock %} | {{ appName | replace({'\"':''}) }} | The guide for science</title>
  5.     <link rel="shortcut icon" href="{{ asset('assets/images/refonte/homepage/icon.svg') }}" type="image/x-icon"/>
  6. {#    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;700&display=swap" rel="stylesheet">#}
  7.     <meta charset="utf-8">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  10.     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
  11.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
  12.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
  13.           integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  14.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  15.     <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
  16.     <link rel="preconnect" href="https://fonts.googleapis.com">
  17.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  18.     <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
  19.     {% block stylesheets %}{% endblock %}
  20. </head>
  21. <body>
  22. {%block body%}
  23. {% endblock %}
  24. <script>
  25.     document.getElementsByName('registration_form')[0].addEventListener('submit', function(e) {
  26.         const submitButton = e.target.querySelector('button[type="submit"]');
  27.         submitButton.disabled = true;
  28.         submitButton.innerText = 'Submitting...';  // Changer le texte du bouton
  29.     });
  30. </script>
  31. {% block javascripts %}{% endblock %}
  32. </body>