terms.js 599 B

123456789101112131415161718192021
  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('div.container.cp-container', [
  10. h('center', h('h1', Msg.tos_title)),
  11. h('p', Msg.tos_legal),
  12. h('p', Msg.tos_availability),
  13. h('p', Msg.tos_e2ee),
  14. h('p', Msg.tos_logs),
  15. h('p', Msg.tos_3rdparties),
  16. ]),
  17. Pages.infopageFooter()
  18. ]);
  19. };
  20. });