terms_and_conditions.tpl 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {# start copy from head.tpl #}
  2. <meta charset="{{ system_charset }}" />
  3. <link href="https://chamilo.org/chamilo-lms/" rel="help" />
  4. <link href="https://chamilo.org/the-association/" rel="author" />
  5. <link href="https://chamilo.org/the-association/" rel="copyright" />
  6. {{ prefetch }}
  7. {{ favico }}
  8. {{ browser_specific_head }}
  9. <link rel="apple-touch-icon" href="{{ _p.web }}apple-touch-icon.png" />
  10. <meta name="apple-mobile-web-app-capable" content="yes" />
  11. <meta name="Generator" content="{{ _s.software_name }} {{ _s.system_version|slice(0,1) }}" />
  12. {# Use the latest engine in ie8/ie9 or use google chrome engine if available #}
  13. {# Improve usability in portal devices #}
  14. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  15. <title>{{ title_string }}</title>
  16. {{ css_static_file_to_string }}
  17. {{ js_file_to_string }}
  18. {{ css_custom_file_to_string }}
  19. {{ css_style_print }}
  20. {# end copy from head.tpl #}
  21. <h2 class="legal-terms-title legal-terms-popup">
  22. {{ "TermsAndConditions" | get_lang }}
  23. </h2>
  24. {% if termsRejected == 1 %}
  25. <div class="error-message legal-terms-popup">
  26. {{ "YouMustAcceptTermsAndConditions" | get_plugin_lang("AdvancedSubscriptionPlugin") | format(session.name) }}
  27. </div>
  28. {% endif %}
  29. {% if errorMessages is defined %}
  30. <div class="alert alert-warning legal-terms-popup">
  31. <ul>
  32. {% for errorMessage in errorMessages %}
  33. <li>{{ errorMessage }}</li>
  34. {% endfor %}
  35. </ul>
  36. </div>
  37. {% endif %}
  38. <div class="legal-terms legal-terms-popup">
  39. {{ termsContent }}
  40. </div>
  41. <div class="legal-terms-files legal-terms-popup">
  42. {{ termsFiles }}
  43. </div>
  44. <div class="legal-terms-buttons legal-terms-popup">
  45. <a
  46. class="btn btn-success btn-advanced-subscription btn-accept"
  47. href="{{ acceptTermsUrl }}"
  48. >
  49. {{ "AcceptInfinitive" | get_plugin_lang("AdvancedSubscriptionPlugin") }}
  50. </a>
  51. <a
  52. class="btn btn-danger btn-advanced-subscription btn-reject"
  53. href="{{ rejectTermsUrl }}"
  54. >
  55. {{ "RejectInfinitive" | get_plugin_lang("AdvancedSubscriptionPlugin") }}
  56. </a>
  57. </div>
  58. <link href="{{ _p.web_plugin }}advanced_subscription/views/css/style.css" rel="stylesheet" type="text/css">