mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2025-12-18 15:17:42 +03:00
77 lines
1.6 KiB
HTML
77 lines
1.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>Upload Successful</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 20px;
|
|
background-color: #f0f2f5;
|
|
color: #333;
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
max-width: 400px;
|
|
margin: 80px auto;
|
|
padding: 30px;
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
animation: fadeIn 0.5s ease-in-out;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
color: #28a745; /* Green for success */
|
|
font-size: 1.8em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.1em;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
a.button {
|
|
display: inline-block;
|
|
background-color: #1a73e8;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
text-decoration: none; /* Remove underline */
|
|
font-size: 1em;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
a.button:hover {
|
|
background-color: #145cb3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h1>🎉 Success!</h1>
|
|
<p>Your file has been uploaded to your device.</p>
|
|
|
|
<a href="/upload" class="button">Upload Another File</a>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|