minidrive_website/index.html

83 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MiniDrive</title>
<style>
body {
background-color: #121212;
color: white;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
margin: 0;
}
h1 {
font-size: 3em;
margin-bottom: 40px;
}
.description {
font-size: 1.2em;
margin-bottom: 20px;
}
table {
border-collapse: collapse;
width: 60%; /* Adjusted width for better centering */
margin-top: 20px;
table-layout: fixed; /* Ensures consistent column width */
}
th, td {
border: 1px solid white;
padding: 10px;
word-wrap: break-word; /* Ensures long text wraps within cells */
}
th {
background-color: #1e1e1e;
}
.sign-up {
position: absolute;
top: 20px;
right: 20px;
font-size: 1em;
color: white;
text-decoration: none;
}
.footer {
position: absolute;
bottom: 10px;
font-size: 0.9em;
}
.manage-link {
font-size: 0.9em;
text-decoration: none;
color: #aaa;
}
.manage-link:hover {
color: white;
}
</style>
</head>
<body>
<a href="#" class="sign-up">Sign Up</a>
<h1>MiniDrive</h1>
<div class="description"> Personal cloud storage for small projects.
<strong>No backups are provided.</strong> Not intended for production or critical data. Security and data retention are not guaranteed. </div>
<table>
<tr>
<th>5GB S3 Storage<br><a href="s3/" class="manage-link">[ manage ]</a></th>
<th>5GB Cloud Storage<br><a href="nc/" class="manage-link">[ manage ]</a></th>
</tr>
<tr>
<td>Object storage powered by Minio, fully compatible with the S3 API. Ideal for developers.</td>
<td>Secure and private file-based cloud storage powered by Nextcloud, offering seamless file sharing, synchronization, and collaboration.</td>
</tr>
</table>
<div class="footer">&copy; 2025 Powered by <a href="https://www.bugzbunny.net" class="manage-link">Bugzbunny Networks</a></div>
</body>
</html>