oneuptime/Home/views/legal.ejs
2023-05-26 19:26:24 +01:00

211 lines
5.7 KiB
Plaintext
Executable File

<!DOCTYPE html>
<html lang="en" id="legal">
<head>
<title>OneUptime | Legal Center</title>
<meta name="description" content="OneUptime monitors websites, API's, and servers and alerts your team if something goes wrong. It also keeps your customers updated about any downtime.">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<%- include('head') -%>
<link rel="stylesheet" href="/css/common.css">
<link rel="stylesheet" href="/css/legal.css">
<script src="https://code.jquery.com/jquery-3.6.4.slim.min.js" integrity="sha256-a2yjHM4jnF9f54xUQakjZGaqYs/V1CYvWpoqZzC2/Bw=" crossorigin="anonymous"></script>
</head>
<body>
<div id="docs">
<div class="fixed-top nav-display">
<nav class="navbar navbar-light bg-light">
<button class="navbar-toggler toggleMenu" type="button" id="toggleMenu">
<span class="navbar-toggler-icon toggleMenu"></span>
</button>
<nav class="nav">
<a class="nav-link" href="/">Home</a>
<a class="nav-link" href="/pricing">Pricing</a>
<a class="nav-link" href="/enterprise/overview">Enterprise</a>
<a class="nav-link" href="/support">Support</a>
</nav>
</nav>
</div>
<div id="sidebar" class="navSection mobile">
<div class="logo">
<a class="site" href="/" title="oneuptime"></a>
</div>
<nav>
<h1 class="legal" style="font-size:20px">Legal Center</h1>
<ul data-collapsable="false">
<li>
<a href="/legal/terms">Terms of Service</a>
</li>
<li>
<a href="/legal/privacy">Privacy Policy</a>
</li>
<li>
<a href="/legal/sla">Service Level Agreement</a>
</li>
<li>
<a href="/legal/gdpr">GDPR Policy</a>
</li>
<li>
<a href="/legal/ccpa">CCPA</a>
</li>
<li>
<a href="/legal/hipaa">HIPAA Compliance</a>
</li>
<li>
<a href="/legal/iso-27001">ISO/IEC 27001</a>
</li>
<li>
<a href="/legal/iso-27017">ISO/IEC 27017</a>
</li>
<li>
<a href="/legal/iso-27018">ISO/IEC 27018</a>
</li>
<li>
<a href="/legal/soc-2">SOC 2</a>
</li>
<li>
<a href="/legal/soc-3">SOC 3</a>
</li>
<li>
<a href="/legal/data-residency">Data Residency</a>
</li>
<li>
<a href="/legal/pci">PCI</a>
</li>
<li>
<a href="/legal/dmca">DMCA Policy</a>
</li>
<li>
<a href="/legal/subprocessors">Subprocessors</a>
</li>
<li>
<a href="/legal/contact">Contact</a>
</li>
</ul>
</nav>
</div>
<div id="content-wrapper" tabindex="0">
<header id="main-header">
<nav>
<ul class="external">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/pricing">Pricing</a>
</li>
<li>
<a href="/enterprise/overview">Enterprise</a>
</li>
<li>
<a href="/support">Support</a>
</li>
</ul>
</nav>
</header>
<article id="content" style="margin-top:20px">
<% if(section === "terms") {%>
<%- include('terms') -%>
<% }%>
<% if(section === "privacy") {%>
<%- include('privacy') -%>
<% }%>
<% if(section === "gdpr") {%>
<%- include('privacy') -%>
<% }%>
<% if(section === "sla") {%>
<%- include('sla') -%>
<% }%>
<% if(section === "pci") {%>
<%- include('pci') -%>
<% }%>
<% if(section === "ccpa") {%>
<%- include('ccpa') -%>
<% }%>
<% if(section === "data-residency") {%>
<%- include('data-residency') -%>
<% }%>
<% if(section === "contact") {%>
<%- include('contact') -%>
<% }%>
<% if(section === "hipaa") {%>
<%- include('hipaa') -%>
<% }%>
<% if(section === ("soc-3")) {%>
<%- include('soc-3') -%>
<% }%>
<% if(section === ("soc-2")) {%>
<%- include('soc-2') -%>
<% }%>
<% if(section === "iso-27001") {%>
<%- include('iso-27001') -%>
<% }%>
<% if(section === "iso-27018") {%>
<%- include('iso-27018') -%>
<% }%>
<% if(section === "iso-27017") {%>
<%- include('iso-27017') -%>
<% }%>
<% if(section.includes("dmca")) {%>
<%- include('dmca') -%>
<% }%>
<% if(section === "subprocessors") {%>
<%- include('subprocessors') -%>
<% }%>
</article>
</div>
</div>
<script>
$(document).ready(function () {
if ($(window).width() >= 768) {
$('#sidebar').show(1000, function () {
$('.nav-display').css({ zIndex: 1 });
});
}
$(document).click(function (e) {
var button = $(e.target).attr('class');
if (button) {
button = button.split(' ')[1];
}
if ($(window).width() < 768 && $('#sidebar').css('display') === 'none' && button === 'toggleMenu') {
$('#sidebar').show(1000, function () {
$('.nav-display').css({ zIndex: 1 });
});
}
if ($(window).width() < 768 && $('#sidebar').css('display') === 'block' && button === undefined) {
$('#sidebar').hide(1000);
}
});
});
</script>
</body>
</html>