You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
4.2 KiB
HTML

{% load i18n %}
{% load static %}
{% get_current_language as LANGUAGE_CODE %}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}">
<head>
{% if title %}
<title>{{ title }} - CCrypto VPN</title>
{% else %}
<title>CCrypto VPN</title>
{% endif %}
<meta charset="UTF-8" />
<link rel="stylesheet" href="{% static 'css/pure-min.css' %}" media="screen" />
<link rel="stylesheet" href="{% static 'css/grids-responsive-min.css' %}" media="screen" />
<link rel="stylesheet" href="{% static 'css/style.css' %}" media="screen" />
<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}" media="screen" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ADDITIONAL_HEADER_HTML | safe}}
{% block headers %}{% endblock %}
</head>
<body>
<div id="topbar">
<div class="topbar-left">
<p>
<a href="http://ccrypto.org">CCrypto</a>
// <a href="//status.ccrypto.org/">{% trans 'Service Status' %}</a>
{% for l, _ in LANGUAGES %}
| <a href="{% url 'set_lang' %}?lang={{l}}&amp;next={{request.get_full_path}}">{{l.upper}}</a>
{% endfor %}
</p>
</div>
<div class="topbar-right">
{% if user.is_authenticated %}
<p><a class="create" href="/account/">{% trans 'Your account' %}</a>
<a class="create" href="/account/logout">{% trans 'Logout' %}</a>
</p>
{% else %}
<p><a href="/account/signup" class="create">{% trans 'Sign up' %}</a>
<a href="/account/login" class="create">{% trans 'Log in' %}</a>
</p>
{% endif %}
</div>
<div style="clear:both"></div>
</div>
<header id="header">
<div id="logo">
<h2><a href="//ccrypto.org/">CCrypto</a></h2>
<h1><a href="/">VPN</a></h1>
</div>
<nav>
<ul>
<li><a href="/">{% trans "VPN" %}</a></li>
<li><a href="/status">{% trans "Servers" %}</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 %}
{% if user.is_staff %}
<li><a href="/admin/">{% trans "Admin" %}</a></li>
{% endif %}
</ul>
</nav>
<div style="clear: both"></div>
</header>
{% block wrap %}
{% if motd %}
<div class="message motd">
<p>{{ motd | safe }}</p>
</div>
{% endif %}
{% for message in messages %}
<div class="message">
<p class="{{message.tags}}">{{ message }}</p>
</div>
{% endfor %}
{% block content %}{% endblock %}
{% endblock %}
<footer id="footer">
<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 %}
Your are connected over CCVPN
{% else %}
Your are not connected over CCVPN
{% endif %}
</li>
</ul>
</footer>
{{ADDITIONAL_HTML | safe}}
{% block livechat_thing %}
{% if not request.user.is_staff %}
{% if SUPPORT_TEMPLATE %}
{% include SUPPORT_TEMPLATE with request=request %}
{% endif %}
{% endif %}
{% endblock %}
</body>
</html>