Upload files from local flash storage

This commit is contained in:
2025-08-17 22:32:44 +02:00
parent 11962e3b52
commit 5ea3860489
2 changed files with 70 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

70
index.html Normal file
View File

@@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Maintenance - LAMINAX</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #f9f9f9;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #2c2c2c;
}
.maintenance-container {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
color: #3b82f6;
margin-bottom: 1rem;
}
.icon img {
max-width: 180px;
margin-top: 2rem;
}
footer {
margin-top: 3rem;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<div class="container maintenance-container">
<!-- Logo -->
<div class="logo">LAMINAX</div>
<!-- Main Text -->
<h2 class="fw-bold">Our site is currently down for maintenance</h2>
<p class="mt-3">
We apologize for any inconvenience caused.
We will be back online as soon as possible.
Please check again in a little while.
<br>Thank you!
<br><strong>— LAMINAX</strong>
</p>
<!-- Plug Icon -->
<div class="icon">
<img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQpsIBl6MHkV-wUmZhxXWcomnlLIX2EaDNrgMzFWo4P1Faaxz47GPf5sTYhkdiqJy8AxxGILV3VPHEJ-_N_2RLqCfSRir7Z9odXhOq-pRk" alt="Disconnected plug"><br>
who tf put the tennis ball here 😭
</div>
<!-- Footer -->
<hr style="color:black !important;">
<footer>
You can reach us at: <a href="mailto:webmaster@human.laminax.co">webmaster@human.laminax.co</a>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>