{% if user %}
{{ user.username }}
+
Invites
Logout
{% else %}
Login
diff --git a/views/panel/invites.html.twig b/views/panel/invites.html.twig
new file mode 100644
index 0000000..675cd18
--- /dev/null
+++ b/views/panel/invites.html.twig
@@ -0,0 +1,48 @@
+{% extends "base_bootstrap.html.twig" %}
+
+{% block content %}
+
+
+
Invites You used {{ used_invites }} from your {{ max_invites == -1 ? 'infinite' : max_invites }} invites
+
+ {% if error %}
+
+ {% endif %}
+
+
+
+
+ Invite |
+
+ {% if max_invites > used_invites or max_invites == -1 %}
+
+ {% endif %}
+ |
+
+
+
+ {% for invite in invites %}
+
+
+ {{ invite.getInvite() }}
+ |
+
+
+ |
+
+ {% else %}
+
+ You don't have any invites :( |
+
+ {% endfor %}
+
+
+
+
+{% endblock %}
\ No newline at end of file