94 lines
2.6 KiB
HTML
94 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>File Deleted sucessfull</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
|
|
|
<style>
|
|
* { border-radius: 0 !important; transition: none !important; }
|
|
body { font-family: sans-serif; background: #fff; color: #000; }
|
|
.box {
|
|
border: 3px solid #000;
|
|
padding: 20px;
|
|
background: #fff;
|
|
width: 100%;
|
|
}
|
|
.title {
|
|
font-size: 28px;
|
|
font-weight: 900;
|
|
border-bottom: 3px solid #000;
|
|
padding-bottom: 6px;
|
|
margin-bottom: 12px;
|
|
text-transform: uppercase;
|
|
}
|
|
.subtitle {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
margin-bottom: 16px;
|
|
}
|
|
.button {
|
|
border: 2px solid #000;
|
|
background: #eee;
|
|
padding: 6px 12px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
}
|
|
.button:hover {
|
|
background: #000;
|
|
color: #fff;
|
|
}
|
|
.ascii {
|
|
font-family: monospace;
|
|
font-size: 11px;
|
|
border: 2px dashed #000;
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
text-align: left;
|
|
white-space: pre;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="min-h-screen flex items-center justify-center p-4">
|
|
|
|
<div class="w-full max-w-[520px]">
|
|
|
|
<div class="box text-center">
|
|
|
|
<div class="title">
|
|
FILE DELETED SUCESSFULL
|
|
</div>
|
|
|
|
<div class="subtitle">
|
|
The file has been absolutely obliterated.
|
|
</div>
|
|
|
|
<!-- <div class="ascii">-->
|
|
<!-- [ OK ] locating file...-->
|
|
<!-- [ OK ] emotionally detaching...-->
|
|
<!-- [ OK ] pressing the big red button...-->
|
|
<!-- [ OK ] file screaming detected...-->
|
|
<!-- [ OK ] scream ignored...-->
|
|
<!-- [ OK ] file is now gone forever™-->
|
|
|
|
<!-- (there is no undo)-->
|
|
<!-- </div>-->
|
|
|
|
<!-- <div class="text-xs font-bold uppercase mb-4">-->
|
|
<!-- Congratulations. The electrons have been freed.-->
|
|
<!-- </div>-->
|
|
|
|
<div class="flex flex-col gap-2">
|
|
<a href="/" class="button w-full">Pretend Nothing Happened</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |