templates/recurrent_jobs_search/form.html.twig line 1

Open in your IDE?
  1. {% extends '/base.html.twig' %}
  2. {% block main_content %}
  3. {% if not app.user %}
  4. {% if feature_flag_service.featureEnabledForRequest(constant('App\\Service\\FeatureFlagService::FEATURE_REGISTER_VIA_GOOGLE_IDENTITY'), app.request) %}
  5. {# Google Identity - GSI - One Tap widget DOM element #}
  6. <div id="g_id_onload"
  7. data-client_id="788335927892-ttc3saqioltf5ng0plia8l3635mp3lbr.apps.googleusercontent.com"
  8. data-context="signin"
  9. data-login_uri="{{ url('returnurls.google.identity.gsi.jobseeker')|replace({'http': 'https'}) }}"
  10. data-close_on_tap_outside="true"
  11. >
  12. </div>
  13. {% endif %}
  14. {% endif %}
  15. {% if feature_flag_service.featureEnabledForRequest(constant('App\\Service\\FeatureFlagService::FEATURE_REGISTER_VIA_GOOGLE_IDENTITY'), app.request) %}
  16. {# Google Identity - GSI - One Tap widget client-side code #}
  17. <script src="https://accounts.google.com/gsi/client" async defer></script>
  18. {% endif %}
  19. {% set resultPage = false %}
  20. <div class="jtw-form-card">{{ include('/recurrent_jobs_search/_includes/form.html.twig') }}</div>
  21. {% endblock %}
  22. {% block javascripts %}
  23. {{ include('/recurrent_jobs_search/_includes/form_javascript.html.twig') }}
  24. {% endblock %}