This commit is contained in:
copyrighttxt
2026-07-06 13:28:00 -04:00
commit 05211f73ef
441 changed files with 94128 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{% extends '__layout__.html' %}
{% block title %}Leaving Vortexi{% endblock %}
{% block head %}
<link href="/static/css/settings.css" rel="stylesheet"/> <!-- Its just easier to resuse this-->
<style>
.text-secondary {
color: rgb(200,200,200) !important;
}
</style>
{% endblock %}
{% block content %}
<div id="main">
<div class="settings-container p-3 d-flex" style="background-color: rgb(26, 26, 26);box-shadow: 0px 0px 10px 0px rgb(0,0,0,0.5);max-width: 600px;">
<div class="w-100 flex-grow-1">
<h1 class="m-0 mb-1">You are leaving Vortexi</h1>
<p class="text-secondary m-0">
Vortexi Forums is real asf cuh.
</p>
<a href="{{baseurl}}" class="btn btn-sm btn-light w-100 text-decoration-none mt-2">Take me there</a>
<p class="text-secondary m-0 mt-2" style="font-size: 12px;">You will be redirected to <span class="text-white" style="background-color: rgb(44, 44, 44);padding: 2px;">{{baseurl}}</span></p>
</div>
</div>
</div>
{% endblock %}