lego/templates/secure-connections.html

72 lines
2.0 KiB
HTML
Raw Normal View History

2019-10-02 13:36:08 +00:00
<p>{{ _("The following visualization shows what information is visible to eavesdroppers with and without Tor Browser and HTTPS encryption:") }}</p>
2019-09-13 20:17:18 +00:00
<ul>
2019-10-02 13:36:08 +00:00
<li>{{ _("Click the “Tor” button to see what data is visible to observers when you're using Tor. The button will turn green to indicate that Tor is on.") }}</li>
<li>{{ _("Click the “HTTPS” button to see what data is visible to observers when you're using HTTPS. The button will turn green to indicate that HTTPS is on.") }}</li>
<li>{{ _("When both buttons are green, you see the data that is visible to observers when you are using both tools.") }}</li>
<li>{{ _("When both buttons are grey, you see the data that is visible to observers when you don't use either tool.") }}</li>
2019-09-13 20:17:18 +00:00
</ul>
<br />
2019-10-02 13:36:08 +00:00
<label>{{ _("HTTPS") }}</label>
2019-09-13 20:17:18 +00:00
<input class="toggle" type="checkbox" id="https-switch"/>
<br />
2019-10-02 13:36:08 +00:00
<label>{{ _("Tor") }}</label>
2019-09-13 20:17:18 +00:00
<input class="toggle" type="checkbox" id="tor-switch"/>
<br />
2019-09-13 20:29:47 +00:00
<div id="http-content" class="switch-off">
2019-09-13 20:17:18 +00:00
<img src="{{ '/static/images/tor-https-0.png'|asseturl }}" />
</div>
2019-09-13 20:29:47 +00:00
<div id="https-content" class="switch-off">
2019-09-13 20:17:18 +00:00
<img src="{{ '/static/images/tor-https-1.png'|asseturl }}" />
</div>
2019-09-13 20:29:47 +00:00
<div id="tor-content" class="switch-off">
2019-09-13 20:17:18 +00:00
<img src="{{ '/static/images/tor-https-2.png'|asseturl }}" />
</div>
2019-09-13 20:29:47 +00:00
<div id="https-tor-content" class="switch-on">
2019-09-13 20:17:18 +00:00
<img src="{{ '/static/images/tor-https-3.png'|asseturl }}" />
</div>
2019-10-02 13:36:08 +00:00
<h5>{{ _("POTENTIALLY VISIBLE DATA") }}</h5>
2019-09-13 20:17:18 +00:00
<dl>
<dt>
2019-10-02 13:36:08 +00:00
{{ _("Site.com") }}
2019-09-13 20:17:18 +00:00
</dt>
<dd>
2019-10-02 13:36:08 +00:00
{{ _("The site being visited.") }}
2019-09-13 20:17:18 +00:00
</dd>
<dt>
2019-10-02 13:36:08 +00:00
{{ _("user / pw") }}
2019-09-13 20:17:18 +00:00
</dt>
<dd>
2019-10-02 13:36:08 +00:00
{{ _("Username and password used for authentication.") }}
2019-09-13 20:17:18 +00:00
</dd>
<dt>
2019-10-02 13:36:08 +00:00
{{ _("data") }}
2019-09-13 20:17:18 +00:00
</dt>
<dd>
2019-10-02 13:36:08 +00:00
{{ _("Data being transmitted.") }}
2019-09-13 20:17:18 +00:00
</dd>
<dt>
2019-10-02 13:36:08 +00:00
{{ _("location") }}
2019-09-13 20:17:18 +00:00
</dt>
<dd>
2019-10-02 13:36:08 +00:00
{{ _("Network location of the computer used to visit the website (the public IP address).") }}
2019-09-13 20:17:18 +00:00
</dd>
<dt>
2019-10-02 13:36:08 +00:00
{{ _("Tor") }}
2019-09-13 20:17:18 +00:00
</dt>
<dd>
2019-10-02 13:36:08 +00:00
{{ _("Whether or not Tor is being used.") }}
2019-09-13 20:17:18 +00:00
</dd>
</dl>