46 lines
964 B
HTML
46 lines
964 B
HTML
<!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>
|