This commit is contained in:
cgcristi 2024-09-08 00:13:01 +02:00
parent ee17a66474
commit 107128ad4d
2 changed files with 214 additions and 0 deletions

111
templates/content.html Normal file
View File

@ -0,0 +1,111 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: #1e1e1e;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
padding: 20px;
width: 80%;
max-width: 800px;
text-align: center;
}
h1, h2 {
color: #ffffff;
}
p, div {
color: #e0e0e0;
}
a {
color: #1e90ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
textarea, input[type="file"], input[type="text"], input[type="url"] {
background-color: #2c2c2c;
color: #e0e0e0;
border: 1px solid #444444;
border-radius: 4px;
padding: 10px;
box-sizing: border-box;
}
button[type="button"] {
background-color: #007bff;
color: #ffffff;
border: none;
border-radius: 4px;
padding: 10px 20px;
margin-top: 10px;
cursor: pointer;
}
button[type="button"]:hover {
background-color: #0056b3;
}
.result {
margin-top: 20px;
color: #ffffff;
}
.file-details, .content-details {
background: #1e1e1e;
padding: 15px;
border-radius: 8px;
border: 1px solid #444444;
}
.file-details h3, .content-details h3 {
color: #ffffff;
}
.file-details p, .content-details p {
color: #e0e0e0;
}
</style>
</head>
<body>
<div class="container">
<h1>Text</h1>
<div class="content">
{% if content %}
{{ content }}
{% elif url %}
<p>Redirecting to: <a href="{{ url }}" target="_blank">{{ url }}</a></p>
{% else %}
<p>Content not found.</p>
{% endif %}
</div>
{% if created_at %}
<div class="details">
<p>Created at: {{ created_at }}</p>
</div>
{% endif %}
</div>
</body>
</html>

103
templates/file.html Normal file
View File

@ -0,0 +1,103 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: #1e1e1e;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
padding: 20px;
width: 80%;
max-width: 800px;
text-align: center;
}
h1, h2 {
color: #ffffff;
}
p, div {
color: #e0e0e0;
}
a {
color: #1e90ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
textarea, input[type="file"], input[type="text"], input[type="url"] {
background-color: #2c2c2c;
color: #e0e0e0;
border: 1px solid #444444;
border-radius: 4px;
padding: 10px;
box-sizing: border-box;
}
button[type="button"] {
background-color: #007bff;
color: #ffffff;
border: none;
border-radius: 4px;
padding: 10px 20px;
margin-top: 10px;
cursor: pointer;
}
button[type="button"]:hover {
background-color: #0056b3;
}
.result {
margin-top: 20px;
color: #ffffff;
}
.file-details, .content-details {
background: #1e1e1e;
padding: 15px;
border-radius: 8px;
border: 1px solid #444444;
}
.file-details h3, .content-details h3 {
color: #ffffff;
}
.file-details p, .content-details p {
color: #e0e0e0;
}
</style>
</head>
<body>
<div class="container">
<h1>File</h1>
<div class="details">
<p><strong>File Name:</strong> {{ name }}</p>
<p><strong>File Size:</strong> {{ size }} bytes</p>
<p><strong>Last Modified:</strong> {{ modified_at }}</p>
<p><a href="{{ url }}" download>Download the file</a></p>
</div>
</div>
</body>
</html>