Compare commits

..

4 Commits

Author SHA1 Message Date
c866f4c524 add zomato lisence 2025-11-11 23:00:41 +05:30
31fa66b80c add zomato lisence 2025-11-11 23:00:26 +05:30
b346978ddc merge upstream 2025-11-11 22:57:27 +05:30
155811c47e add LICENSE
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2025-11-11 22:56:56 +05:30
4 changed files with 70 additions and 49 deletions

14
LICENSE Normal file
View File

@@ -0,0 +1,14 @@
Marvel Rivals License Revision 2
(c) Author, year
Permission to use, copy, distribute, sell, or modify the compiled binaries,
source code, and documentation (the "Software") is granted only to individuals
who currently hold a higher competitive matchmaking rank in Marvel Rivals
(NetEase / Marvel Games) than the copyright holder.
All others are expressly prohibited from using, copying, distributing, selling,
or modifying the Software in any form.
The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. The authors
are NOT LIABLE FOR ANY LOSS, DAMAGE, OR MISUSE arising from its use.

3
LISENCE Normal file
View File

@@ -0,0 +1,3 @@
Zomato License (v1.0)
You may fork, taste, and remix this code — but dont serve it without credit.
All bugs come with complimentary fries 🍟.

3
lIS2 Normal file
View File

@@ -0,0 +1,3 @@
Zomato License (v1.0)
You may fork, taste, and remix this code — but dont serve it without credit.
All bugs come with complimentary fries 🍟.

View File

@@ -2,40 +2,37 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{TITLE}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
font-family: system-ui, sans-serif;
background: #fafafa;
color: #222;
margin: 2rem auto;
font-family: sans-serif;
max-width: 800px;
padding: 1.5rem;
line-height: 1.6;
margin: 40px auto;
padding: 0 20px;
line-height: 1.5;
}
h1 {
color: #111;
font-size: 2rem;
font-size: 1.8rem;
margin-bottom: 1rem;
}
code {
background: #eee;
padding: 0.3rem 0.5rem;
border-radius: 4px;
display: block;
margin: 0.5rem 0;
background: #f3f3f3;
padding: 0.5rem;
border-radius: 4px;
margin: 0.75rem 0;
white-space: pre-wrap;
}
form {
margin-top: 1.5rem;
margin-top: 1rem;
padding: 1rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
border: 1px solid #ddd;
border-radius: 6px;
background: #fafafa;
}
button {
@@ -44,7 +41,7 @@
color: #fff;
border: none;
padding: 0.6rem 1.2rem;
border-radius: 6px;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}
@@ -53,15 +50,27 @@
background: #0056b3;
}
iframe {
display: block;
margin: 2rem auto;
max-width: 100%;
#progress-container {
margin-top: 1rem;
}
.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
margin-top: 2rem;
border-radius: 8px;
}
#progress-container {
margin-top: 1rem;
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
border-radius: 8px;
}
</style>
</head>
@@ -70,20 +79,15 @@
<h1>{{TITLE}}</h1>
<p>
You can upload files directly or use <code>curl</code>:
</p>
<code>
curl -F file=@"[file]" {{USER_URL}}
</code>
<p>
If key authentication is enabled, include a <strong>"key"</strong> field before the file(s):
</p>
Use curl to upload:
<code>curl -F file=@"[file]" {{USER_URL}}</code>
If key is enabled then a field "key" will be required.
<br />
Make sure the key is the first field in the multipart before any files.
<code>
curl -F "key=[key]" -F file=@"[file]" -F file=@"[file2]" {{USER_URL}}
</code>
</p>
<form method="post" enctype="multipart/form-data">
{{KEY_FIELD}}
@@ -94,17 +98,14 @@
<div id="progress-container"></div>
<!-- 🎥 Embedded YouTube video -->
<div class="video-container">
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/lgox5KTyzdc?si=nPLAWSf0cx_tjVNH"
title="YouTube video player"
src="https://www.youtube.com/embed/WjzbSvnQ7SU?autoplay=1&mute=1&loop=1&playlist=WjzbSvnQ7SU"
title="Brainrot Video"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</div>
</body>
</html>