privacy.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. define([
  2. '/common/hyperscript.js',
  3. '/customize/messages.js',
  4. '/customize/pages.js'
  5. ], function (h, Msg, Pages) {
  6. return function () {
  7. return h('div#cp-main', [
  8. Pages.infopageTopbar(),
  9. h('.container-fluid.cp-privacy-top', [
  10. h('div.container',[
  11. h('center', h('h1', Msg.policy_title)),
  12. ]),
  13. ]),
  14. h('div.container.cp-container.cp-privacy',[
  15. h('h3', Msg.policy_whatweknow),
  16. h('hr'),
  17. Pages.setHTML(h('p'), Msg.policy_whatweknow_p1),
  18. h('h3', Msg.policy_howweuse),
  19. h('hr'),
  20. h('p', Msg.policy_howweuse_p1),
  21. h('p', Msg.policy_howweuse_p2),
  22. h('h3', Msg.policy_whatwetell),
  23. h('hr'),
  24. h('p', Msg.policy_whatwetell_p1),
  25. h('h3', Msg.policy_links),
  26. h('hr'),
  27. h('p', Msg.policy_links_p1),
  28. h('h3', Msg.policy_ads),
  29. h('hr'),
  30. h('p', Msg.policy_ads_p1),
  31. h('h3', Msg.policy_choices),
  32. h('hr'),
  33. h('p', Msg.policy_choices_open),
  34. Pages.setHTML(h('p'), Msg.policy_choices_vpn),
  35. ]),
  36. Pages.infopageFooter()
  37. ]);
  38. };
  39. });