|
|
|
@ -52,7 +52,7 @@
|
|
|
|
|
<ul>
|
|
|
|
|
<li><a href="/">{% trans "VPN" %}</a></li>
|
|
|
|
|
<li><a href="/status">{% trans "Servers" %}</a></li>
|
|
|
|
|
<li><a href="/page/help">{% trans "Support" %}</a></li>
|
|
|
|
|
<li><a href="/page/help">{% trans "Guides & Support" %}</a></li>
|
|
|
|
|
{% if user.is_authenticated %}
|
|
|
|
|
<li><a href="/tickets/">{% trans "Tickets" %}</a></li>
|
|
|
|
|
{% endif %}
|
|
|
|
@ -80,18 +80,26 @@
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
<footer id="footer">
|
|
|
|
|
<p>
|
|
|
|
|
<ul class="footer-column">
|
|
|
|
|
<li>By <a href="https://ccrypto.org/">CCrypto</a></li>
|
|
|
|
|
<li><a href="/page/tos">{% trans 'ToS' %}</a></li>
|
|
|
|
|
<li><a href="https://git.ccrypto.org/CCrypto/ccvpn3">{% trans 'Source code' %}</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<ul class="footer-column">
|
|
|
|
|
<li><a href="https://status.ccrypto.org/">{% trans 'Service Status' %}</a></li>
|
|
|
|
|
<li><a href="/page/help">{% trans "Guides & Support" %}</a></li>
|
|
|
|
|
<li><a href="https://twitter.com/CCrypto_VPN">{% trans 'CCrypto_VPN on Twitter' %}</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<ul class="footer-column">
|
|
|
|
|
<li>Your IP: {{CLIENT_IP}}</li>
|
|
|
|
|
<li>
|
|
|
|
|
{% if CLIENT_ON_VPN %}
|
|
|
|
|
<b>{% trans "You are using the VPN." %}</b>
|
|
|
|
|
Your are connected over CCVPN
|
|
|
|
|
{% else %}
|
|
|
|
|
Your are not connected over CCVPN
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% trans "Your IP address: " %}
|
|
|
|
|
{{ CLIENT_IP }}
|
|
|
|
|
<br />
|
|
|
|
|
<a href="//ccrypto.org/">Cognitive Cryptography</a>
|
|
|
|
|
- <a href="https://twitter.com/CCrypto_VPN">{% trans 'CCrypto_VPN on Twitter' %}</a>
|
|
|
|
|
- <a href="/page/tos">{% trans 'ToS' %}</a>
|
|
|
|
|
- <a href="https://github.com/CCrypto/ccvpn3">{% trans "It's open-source!" %}</a>
|
|
|
|
|
</p>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
{{ADDITIONAL_HTML | safe}}
|
|
|
|
|