templates/refonte/Authentification/registration-form.html.twig line 1

Open in your IDE?
  1. {% extends 'refonte/Authentification/base.html.twig' %}
  2. {% block title %}User Authentification{% endblock %}
  3. {% block stylesheets %}
  4.      {{ encore_entry_link_tags('authentification') }}
  5.  {% endblock %}
  6. {% block body %}
  7.     <style>
  8.             /* Left Panel */
  9.             .left-panel {
  10.                 background: url('{{ asset('/assets/images/svg/Section.svg') }}') no-repeat center center;
  11.             }
  12.     </style>
  13.     <div class="container-fluid m-0 p-0">
  14.         <!-- Left Panel -->
  15.         <div class="left-panel d-none d-lg-flex">
  16.             <a href="{{ path('homepage') }}" class="stretched-link"></a>
  17.             <div class="mx-auto my-auto icons">
  18.                 <a href='https://www.facebook.com/guide.journal.3' target="_blank"> <img src="{{ asset('/assets/images/refonte/icons/fb.svg') }}" alt="fb"></a>
  19.                 <a href='https://www.instagram.com/guidejournal22/' target="_blank">   <img src="{{ asset('/assets/images/refonte/icons/instagram.svg') }}" alt="instagram"></a>
  20.                 <a href="https://www.linkedin.com/company/researchguidenet" target="_blank">
  21.                     <img src="{{ asset('/assets/images/refonte/icons/linkedin-icon.svg') }}" alt="linkedin">
  22.                 </a>
  23.                 <a href='https://www.youtube.com/channel/UCgouL9eAodmPKXckGsTPRWw' target="_blank">
  24.                     <img src="{{ asset('/assets/images/refonte/icons/youtube.svg') }}" alt="youtube">
  25.                 </a>
  26.             </div>
  27.         </div>
  28.         <!-- Right Panel -->
  29.         <div class="right-panel">
  30.             <a onclick="window.history.back()" class="back-link"><i class="fa fa-arrow-left"></i>Go back</a>
  31.             {% for message in app.flashes('success') %}
  32.                 <div class="alert alert-success alert-dismissible alert-success-journal mx-auto d-flex mb-4" role="alert">
  33.                     <span class="">{{ message|raw }}</span>
  34.                     <span type="button" class="close position-static ml-auto" data-dismiss="alert" aria-label="Close" style="padding: 0 !important;"><span aria-hidden="true">×</span></span>
  35.                 </div>
  36.             {% endfor %}
  37.             {% for message in app.flashes('error') %}
  38.                 <div class="alert alert-danger alert-dismissible alert-danger-journal mx-auto d-flex mb-4" role="alert">
  39.                     <span class="">{{ message|raw }}</span>
  40.                     <span type="button" class="close position-static ml-auto" data-dismiss="alert" aria-label="Close" style="padding: 0 !important;"><span aria-hidden="true">×</span></span>
  41.                 </div>
  42.             {% endfor %}
  43.             {% for message in app.flashes('info') %}
  44.                     <div class="alert flash-msg alert-primary border-0 alert-dismissible mt-2">
  45.                         <button type="button" class="close" data-dismiss="alert"><span>×</span></button>
  46.                         <div>{{ message|raw }}</div>
  47.                 </div>
  48.             {% endfor %}
  49.             <h1>Join {{ appName | replace({'\"':''}) }}  <br/>  Boost Your Scientific Impact!</h1>
  50.             <p style="font-size: 16px">
  51.                 Connect with a <b>global network of researchers, universities, and industries</b>,<br/> unlock <b>funding opportunities</b>, collaborate on
  52.                 <b>cutting-edge</b> projects, <br/> and leverage <b>powerful tools</b> to take your research and career to the next level!
  53.             </p>
  54.             <!-- Buttons -->
  55.             <a href="{{ path('connect_google_start', {'urlRefer': app.request.headers.get('referer')}) }}" class="btn btn-google">
  56.                 <img class="img-fluid" src="{{ asset('assets/images/refonte/icons/google.svg') }}" alt="google"/>
  57.                 Continue with Google
  58.             </a>
  59.             <a href="{{ path('connect_linkedin_start', {'urlRefer': app.request.headers.get('referer')}) }}" class="btn btn-linkedin">
  60.                 <img class="img-fluid" src="{{ asset('assets/images/refonte/icons/linkedin.svg') }}" alt="linkedin"/>
  61.                 Continue with LinkedIn
  62.             </a>
  63.             <a href="{{ path('register') }}" class="btn btn-primary">Create your account</a>
  64.             <p class="mt-1">  Have an account? <a href="{{ path('login_new') }}" style="color: #FF8961; text-decoration: none;font-weight: bold">Sign in</a></p>
  65.             <div class="text-center haveAccount" style="font-size: 14px;">
  66.                 <p class="terms text-center" style="font-size: 16px">
  67.                     By signing up, you agree to the <a href="">Terms of Use</a> and the <br> <a href="{{ path('privacy-policy') }}">Privacy Policy</a>, including the <a href="{{ path('privacy-policy') }}">Use of Cookies</a>.
  68.                 </p>
  69.                 <p class="mt-2 mb-0 pt-2">If you encounter login problems, please <a href="{{ path('contact-us') }}">contact us</a></p>
  70.             </div>
  71. {#            <a href="{{ path('login_new') }}" class="btn btn-primary">Sign in</a>#}
  72.         </div>
  73.     </div>
  74. {% endblock %}