{% block replacestylesheets %}
<link rel="stylesheet" href="{{ asset('css/style.css') }}" type="text/css" />
{% endblock %}
{% extends 'new_navbar.html.twig' %}
{% block title %}Security - Toast{% endblock %}
{% block anchorAccount %}
<a href="#wrapper" class="anchor-title">Toast Security Principles</a>
{% endblock %}
{% block logo %}
<a href="{{ path('site_index') }}"><img src="{{ asset('img/logo.svg') }}" alt="toast"></a>
{% endblock %}
{% block bodyClass %}home{% endblock %}
{% block body %}
<main id="main">
<section class="top-section">
<div class="container">
<h1 class="scroll-title">Toast Security Principles</h1>
<div class="text-holder">
<div class="img-box">
<img src="{{ asset('img/Founders.svg') }}" alt="Founders">
</div>
<div class="text">
<div class="name-holder">
<strong class="name">Maksym Sh. & Maksym P.</strong>
<span>Toast Founders </span>
<img src="{{ asset('img/Quote.svg') }}" alt="quote">
</div>
<p>Toast values user privacy and security as much as user experience.<br> Our goal is to provide a fast and secure ecosystem that our users can rely on.</p>
</div>
</div>
</div>
</section>
<section class="why-account-content">
<div class="container">
<ul class="why-account-list">
<li>
<span class="icon">š³</span>
<h2>Credit Card Safety</h2>
<p>When you purchase a paid Toast subscription, your credit card data is not transmitted through nor stored on our systems. Instead, we depend onĀ <a href="https://stripe.com/" target="_blank">Stripe</a>, a company dedicated to this task. Stripe is certified to PCI Service Provider Level 1, the most stringent level of certification available.Ā <a href="https://stripe.com/docs/security" target="_blank">Stripeās security information</a> is available online.</p>
</li>
<li>
<span class="icon">š</span>
<h2>Authentication Security</h2>
<h3>Authentication Options</h3>
<p>We offer our own local sign-in as well as Google, Apple & Facebook Authentication services.</p>
<h3>Secure Credential Storage</h3>
<p>Toast follows secure credential storage best practices by never storing passwords in a human-readable format, and only as of the result of a salted, one-way hash.</p>
<h3>API Security & Authentication</h3>
<p>Our API is SSL-only and you must be a verified user to make API requests.</p>
</li>
<li>
<span class="icon">š”</span>
<h2>Network Security</h2>
<p>All access to the Toast network is restricted to HTTPS encrypted connections. Firewalls, best-in-class router technology Intrusion Detection and/or Prevention technologies (IDS/IPS) are implemented by our hosting provider, which monitor and/or block malicious traffic and network attacks.</p>
<h3>Network Access</h3>
<p>Access to users' data is only possible via encrypted connections according to industry best-practices HTTPS and Secure Sockets Layer (SSL). Additionally, unique (per user/per device) and regularly updated security tokens are used to ensure even higher safety of personal information.</p>
</li>
<li>
<span class="icon">š§©</span>
<h2>Extension Security</h2>
<p class="style-margin">All Toast extensions communicate with the server only through an encrypted connection to API. Extensions never send any information to Toast's servers without user action.</p>
<p>Any data collection is not done by extension unless requested by the user. Even when the data collection is requested by the user in order to save a folder or do any other action that requires information from browser/web page Toast only collects the least amount of data possible to provide access to the desired functionality.</p>
<h4>Toast extensions <b>never:</b></h4>
<ul class="list">
<li>track users' web activity</li>
<li>save browsing history</li>
<li>read user's web page contents (passwords, form fields, links... nothing)</li>
</ul>
<p>Finally, Toast is only available for download through official browsers' web stores and Apple Mac App Store, which means each extension version is diligently checked by Apple, Google, Opera & Firefox employees before being allowed to be distributed through corresponding store.</p>
</li>
<li>
<span class="icon">š¼</span>
<h2>Employee Access</h2>
<p class="style-margin">Userās private information (such as passwords) is encrypted at rest. Passwords are never stored in the database in plaintext and are not readable by staff.</p>
<p class="style-margin">No Toast staff will access your data unless required for support reasons.</p>
<p>When working a support issue we do our best to respect your privacy as much as possible, we only access the minimum data needed to resolve your issue. Finally, itās worth noting that Toastās staff is quite small, limiting the number of individuals who would support you.</p>
</li>
<li>
<span class="icon">š</span>
<h2>Datacenter security</h2>
<p>Toast is hosted with industry-leading Ukrainian hosting provider <a href="https://hostpro.ua/" target="_blank">Hostpro</a>. Toast servers are located in the United States. All production, physical security, power, and internet connectivity is monitored by Hostpro and their datacenter partners.</p>
</li>
<li>
<span class="icon">š </span>
<h2>Availability & Uptime</h2>
<p class="style-margin">Hostpro (Toastās hosting provider) provides 99.9% uptime, publicly available status page, and maintenance notifications.</p>
<p>Toast development and updates are always done on the separate environments and well checked before release. The release of updates does not take more than a few minutes usually and should not create any noticeable issues for our users.</p>
</li>
<li>
<span class="icon">āļø</span>
<h2>Contact Us</h2>
<p>Have a question or concern? Please email us at <a href="mailto:dotoast.com@gmail.com">dotoast.com@gmail.com</a>.</p>
</li>
</ul>
</div>
</section>
</main>
{% endblock %}
{% block javascripts %}
<script src="{{ asset('js/jquery.main.js') }}"></script>
<script src="{{ asset('js/registration.js') }}"></script>
{% endblock %}