{% extends "base.html" %} {% block content %}
{{ status.status|title }} {% if status.status == 'connected' %}
VPN Connection Active
Connected since: {{ status.connected_since }}
Upload: {{ status.tx }} Download: {{ status.rx }}
{% if status.total_tx and status.total_rx %} Total Transfer: ↑{{ status.total_tx }} ↓{{ status.total_rx }} {% endif %}
{% elif status.status == 'error' %}
System Issues Detected:
    {% for issue in status.issues %}
  • {{ issue }}
  • {% endfor %}
{% else %}
{% if status.message %} {{ status.message }} {% else %} VPN is currently disconnected {% endif %}
{% endif %}
{% if not WG_CONF_PATH.exists() %}
Please add a WireGuard configuration first
{% endif %}
WireGuard Configuration {% if WG_CONF_PATH.exists() %} Config Present {% endif %}
Paste your TorGuard WireGuard configuration here
File will be stored securely with restricted permissions
Login to TorGuard Portal
TorGuard WireGuard Manager v1.0
{% endblock %}