templates/basePages/auth.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>Venderes Sellers</title>
  7.     <meta name="description" content="">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.     <link rel="stylesheet" href="/assets/styles/auth.css">
  10.     <script src="https://www.google.com/recaptcha/api.js?render=6LdO5KEaAAAAAMo8D2jUQU3qHkFYbWBKdGzoDOoA" async defer></script>
  11.     <script src="https://auth.venderes.com/static/_assets/account.js"></script>
  12.     <script>
  13.     {% verbatim %}
  14.       const auth = new AccountManager(
  15.         'business_site',
  16.         [2],
  17.         '.app-formObject',
  18.         '[data-formInp="{{name}}"]',
  19.         'wrong-inp'
  20.       );
  21.     {% endverbatim %}
  22.     auth.error_func = () => {PROGRESSBAR(false);};
  23.     function PROGRESSBAR(status) {
  24.       document.getElementsByClassName("PROGRESSBAR")[0].style.display = (status ? '' : 'none');
  25.     }
  26.     </script>
  27.   </head>
  28.   <body>
  29.     <div class="PROGRESSBAR" style="display:none;"></div>
  30.     <div class="auth-card-position">
  31.       <div class="auth-card-logo">
  32.         <img src="/assets/images/logos/auth-logo.svg">
  33.       </div>
  34.       <div class="auth-card-build">
  35.       {{ include('/basePages/page/module@auth/' ~ contentType ~ '.html.twig') }}
  36.       </div>
  37.     </div>
  38.   </body>
  39. </html>