templates/site/security.html.twig line 1

Open in your IDE?
  1. {% block replacestylesheets %}
  2.     <link rel="stylesheet" href="{{ asset('css/style.css') }}" type="text/css" />
  3. {% endblock %}
  4. {% extends 'new_navbar.html.twig' %}
  5. {% block title %}Security - Toast{% endblock %}
  6. {% block anchorAccount %}
  7.     <a href="#wrapper" class="anchor-title">Toast Security Principles</a>
  8. {% endblock %}
  9. {% block logo %}
  10.     <a href="{{ path('site_index') }}"><img src="{{ asset('img/logo.svg') }}" alt="toast"></a>
  11. {% endblock %}
  12. {% block bodyClass %}home{% endblock %}
  13. {% block body %}        
  14. <main id="main">
  15.     <section class="top-section">
  16.         <div class="container">
  17.             <h1 class="scroll-title">Toast Security Principles</h1>
  18.             <div class="text-holder">
  19.                 <div class="img-box">
  20.                     <img src="{{ asset('img/Founders.svg') }}" alt="Founders">
  21.                 </div>
  22.                 <div class="text">
  23.                     <div class="name-holder">
  24.                         <strong class="name">Maksym Sh. & Maksym P.</strong>
  25.                         <span>Toast Founders </span>
  26.                         <img src="{{ asset('img/Quote.svg') }}" alt="quote">
  27.                     </div>
  28.                     <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>
  29.                 </div>
  30.             </div>
  31.         </div>
  32.     </section>
  33.     <section class="why-account-content">
  34.         <div class="container">
  35.             <ul class="why-account-list">
  36.                 <li>
  37.                     <span class="icon">šŸ’³</span>
  38.                     <h2>Credit Card Safety</h2>
  39.                     <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>
  40.                 </li>
  41.                 <li>
  42.                     <span class="icon">šŸ‘</span>
  43.                     <h2>Authentication Security</h2>
  44.                     <h3>Authentication Options</h3>
  45.                     <p>We offer our own local sign-in as well as Google, Apple & Facebook Authentication services.</p>
  46.                     <h3>Secure Credential Storage</h3>
  47.                     <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>
  48.                     <h3>API Security & Authentication</h3>
  49.                     <p>Our API is SSL-only and you must be a verified user to make API requests.</p>
  50.                 </li>
  51.                 <li>
  52.                     <span class="icon">šŸ“”</span>
  53.                     <h2>Network Security</h2>
  54.                     <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>
  55.                     <h3>Network Access</h3>
  56.                     <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>
  57.                 </li>
  58.                 <li>
  59.                     <span class="icon">šŸ§©</span>
  60.                     <h2>Extension Security</h2>
  61.                     <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>
  62.                     <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>
  63.                     <h4>Toast extensions <b>never:</b></h4>
  64.                     <ul class="list">
  65.                         <li>track users' web activity</li>
  66.                         <li>save browsing history</li>
  67.                         <li>read user's web page contents (passwords, form fields, links... nothing)</li>
  68.                     </ul>
  69.                     <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>
  70.                 </li>
  71.                 <li>
  72.                     <span class="icon">šŸ’¼</span>
  73.                     <h2>Employee Access</h2>
  74.                     <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>
  75.                     <p class="style-margin">No Toast staff will access your data unless required for support reasons.</p>
  76.                     <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>
  77.                 </li>
  78.                 <li>
  79.                     <span class="icon">šŸ—„</span>
  80.                     <h2>Datacenter security</h2>
  81.                     <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>
  82.                 </li>
  83.                 <li>
  84.                     <span class="icon">šŸ› </span>
  85.                     <h2>Availability & Uptime</h2>
  86.                     <p class="style-margin">Hostpro (Toastā€™s hosting provider) provides 99.9% uptime, publicly available status page, and maintenance notifications.</p>
  87.                     <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>
  88.                 </li>
  89.                 <li>
  90.                     <span class="icon">ā˜Žļø</span>
  91.                     <h2>Contact Us</h2>
  92.                     <p>Have a question or concern? Please email us at <a href="mailto:dotoast.com@gmail.com">dotoast.com@gmail.com</a>.</p>
  93.                 </li>
  94.             </ul>
  95.         </div>
  96.     </section>
  97. </main>
  98. {% endblock %}
  99. {% block javascripts %}
  100.     <script src="{{ asset('js/jquery.main.js') }}"></script>
  101.     <script src="{{ asset('js/registration.js') }}"></script>
  102. {% endblock %}