This commit is contained in:
2025-02-05 17:25:54 +05:30
parent 55448e34c6
commit 3e88393f00
6 changed files with 15 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
<link rel="stylesheet" href="assets/css/_cookies.css">
<div id="cookieBanner">
<p>This website uses cookies to ensure you get the best experience on our website. <a href="/privacy-policy">Learn more</a>.</p>
<p>This website uses cookies to ensure you get the best experience on our website. <a href="https://docs.google.com/document/d/1sZ2TwjST8nKaRl-rSteAd2XHlVZdDhgS6jHRKwjDedc/edit?usp=sharing">Learn more</a>.</p>
<button class="accept" onclick="acceptCookies()">GOT IT!</button>
</div>
<script src="assets/js/_cookies.js"></script>

View File

@@ -10,7 +10,7 @@ if (session_status() === PHP_SESSION_NONE) {
<div class="logo">
<img src="assets/images/url.png" alt="Xeorl Logo" class="logo-img">
<span>Xeorl</span>
<span class="version-number">4.2.3</span>
<span class="version-number">4.2.4</span>
</div>
<label class="burger">

View File

@@ -34,7 +34,7 @@ shortenBtn.onclick = () => {
let data = xhr.response;
if (data.length <= 5) {
// This is your shoeten domain name
const domain = "http://localhost/Php-Projects/xeorl/htdocs//";
const domain = "xeorl.buzz/";
let shortenURL = domain + data;
const defaultMessage = document.getElementById("default-message");