Chirac Easter EGG

This commit is contained in:
MasterAcnolo
2025-07-02 16:17:09 +02:00
parent ec6963cff3
commit 2a8d307bc8
4 changed files with 19 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 KiB

View File

@@ -22,8 +22,8 @@
<div class="container"> <div class="container">
<header> <header>
<h1> Freedom Loader </h1> <h1 id="title"> Freedom Loader </h1>
<p> Because why not? </p> <p id="subtitle"> Because why not? </p>
</header> </header>
<form action="/download" method="POST" id="downloadForm"> <form action="/download" method="POST" id="downloadForm">
@@ -69,6 +69,7 @@
<script src="script/downloadstatus.js"></script> <script src="script/downloadstatus.js"></script>
<script src="script/fetchinfo.js"></script> <script src="script/fetchinfo.js"></script>
<script src="script/chirac.js"></script>
</body> </body>
</html> </html>

16
public/script/chirac.js Normal file
View File

@@ -0,0 +1,16 @@
function Chirac(){
const title = document.getElementById("title");
title.innerHTML = "Chirac Loader";
const subtitle = document.getElementById("subtitle");
subtitle.innerHTML = "J'aime les pommes";
subtitle.style.color= "black";
document.body.style.backgroundImage = "url('assets/images/goat2.webp')";
document.body.style.backgroundSize = "cover";
document.body.style.backgroundPosition = "center";
document.body.style.backgroundAttachment = "fixed";
console.log("Je serai le président de tous les français");
}