pyUpload/dev/success.html
2025-03-12 22:21:30 +01:00

48 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#007bff">
<meta name="robots" content="noindex, nofollow">
<title>Upload Erfolgreich</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
}
.success-container {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
a {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
}
a:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="success-container">
<h2>Datei erfolgreich hochgeladen!</h2>
<p>Ihre Datei wurde erfolgreich auf den Server übertragen.</p>
<a href="/">Neue Datei hochladen</a>
</div>
</body>
</html>