initial commit done , pre peoduction

This commit is contained in:
acidburnmonkey
2025-08-06 01:03:53 -04:00
commit aa8ae37799
18 changed files with 607 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
<!doctype html>
{% load static %}
<html>
<head>
<link rel="stylesheet" href="{% static 'styles.css' %}" />
<title>Who are you?</title>
</head>
<body>
<h1>
U HAVE THREAD <br />
UPON MY DOMAIN <br />
& MUST SUFFER <br />
WHO R U?
</h1>
<div class="container">
<div class="info">
<h2>IP Address:</h2>
<p id="ip">Loading...</p>
</div>
<div class="info">
<h2>Country:</h2>
<p id="country">Loading...</p>
</div>
<div class="info">
<h2>City:</h2>
<p id="city">Loading...</p>
</div>
<div class="info">
<h2>Region:</h2>
<p id="region">Loading...</p>
</div>
<div class="info">
<h2>Internet Provider:</h2>
<p id="isp">Loading...</p>
</div>
</div>
</body>
<script src='{% static "scripts.js" %}'></script>
</html>