Spaces:
Running
Running
Commit
·
791ed17
1
Parent(s):
5c83afb
Update templates/index.html
Browse files- templates/index.html +4 -3
templates/index.html
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
6 |
<link rel="preload" href="{{ url_for('static', filename='eye.gif') }}" as="image">
|
7 |
<link rel="icon" type="image/png" href="https://i.ibb.co/gvKPXJD/eye.gif">
|
8 |
-
<title>{{
|
9 |
<style>
|
10 |
body {
|
11 |
justify-content: center;
|
@@ -203,7 +203,7 @@
|
|
203 |
|
204 |
<div class="info" id="info">
|
205 |
<h1 id="country" style="color:rgb(53, 53, 53); margin-top: 10px; font-family: 'Helvetica'; font-weight: 50; margin-bottom: 10px;"> searching...</h1>
|
206 |
-
<a href="{{ ip_link }}" target="_blank"> <h3>{{
|
207 |
|
208 |
<div style="display: flex; margin-top: 22px; margin-bottom: 0%;">
|
209 |
<a href="?new=true" style="margin-right: 10px; display: inline-block;">
|
@@ -259,7 +259,8 @@
|
|
259 |
const infoText = document.getElementById("info-text");
|
260 |
infoText.style.opacity = "0";
|
261 |
|
262 |
-
const
|
|
|
263 |
|
264 |
const newUrl = "{{ url }}";
|
265 |
|
|
|
5 |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
6 |
<link rel="preload" href="{{ url_for('static', filename='eye.gif') }}" as="image">
|
7 |
<link rel="icon" type="image/png" href="https://i.ibb.co/gvKPXJD/eye.gif">
|
8 |
+
<title>{{ page_title }}</title>
|
9 |
<style>
|
10 |
body {
|
11 |
justify-content: center;
|
|
|
203 |
|
204 |
<div class="info" id="info">
|
205 |
<h1 id="country" style="color:rgb(53, 53, 53); margin-top: 10px; font-family: 'Helvetica'; font-weight: 50; margin-bottom: 10px;"> searching...</h1>
|
206 |
+
<a id="location-name" href="{{ ip_link }}" target="_blank"> <h3>{{ page_title }}</h3></a>
|
207 |
|
208 |
<div style="display: flex; margin-top: 22px; margin-bottom: 0%;">
|
209 |
<a href="?new=true" style="margin-right: 10px; display: inline-block;">
|
|
|
259 |
const infoText = document.getElementById("info-text");
|
260 |
infoText.style.opacity = "0";
|
261 |
|
262 |
+
const locationName = document.getElementById("location-name");
|
263 |
+
locationName.textContent = "{{ name }}";
|
264 |
|
265 |
const newUrl = "{{ url }}";
|
266 |
|