You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
599 B
JavaScript
22 lines
599 B
JavaScript
define([
|
|
'/common/hyperscript.js',
|
|
'/customize/messages.js',
|
|
'/customize/pages.js'
|
|
], function (h, Msg, Pages) {
|
|
return function () {
|
|
return h('div#cp-main', [
|
|
Pages.infopageTopbar(),
|
|
h('div.container.cp-container', [
|
|
h('center', h('h1', Msg.tos_title)),
|
|
h('p', Msg.tos_legal),
|
|
h('p', Msg.tos_availability),
|
|
h('p', Msg.tos_e2ee),
|
|
h('p', Msg.tos_logs),
|
|
h('p', Msg.tos_3rdparties),
|
|
]),
|
|
Pages.infopageFooter()
|
|
]);
|
|
};
|
|
});
|
|
|