summaryrefslogtreecommitdiffstats
path: root/solve/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'solve/index.html')
-rw-r--r--solve/index.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/solve/index.html b/solve/index.html
new file mode 100644
index 0000000..44f9130
--- /dev/null
+++ b/solve/index.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Nimble Join Service</title>
+ <style>
+ body {
+ font-family: Arial, sans-serif;
+ line-height: 1.6;
+ margin: 0 auto;
+ max-width: 800px;
+ padding: 20px;
+ background-color: #333;
+ color: #eee;
+ }
+ h1 {
+ color: #fff;
+ }
+ h2 {
+ color: #ccc;
+ }
+ p {
+ color: #ddd;
+ }
+ code {
+ background-color: #555;
+ color: #eee;
+ border: 1px solid #666;
+ border-radius: 4px;
+ padding: 2px 6px;
+ }
+ a {
+ color: #007bff;
+ text-decoration: none;
+ }
+ a:hover {
+ text-decoration: underline;
+ }
+ </style>
+</head>
+<body>
+ <h1>Nimble Join Service</h1>
+ <p>This service allows you to upload files via POST. You can join your uploaded files into a single one by using the <a href="/join">join service</a>!</p>
+
+ <h2>Upload</h2>
+ <p>Simply POST your data to <a href="/upload"><code>/upload</code></a>.</p>
+
+ <h2>List/Download</h2>
+ <p>To list all uploaded files, visit <a href="/data/"><code>/data/</code></a>.</p>
+
+ <h2>Join</h2>
+ <p>Combine your files using <a href="/join"><code>/join</code></a>. You can download files as either string or binary data.</p>
+</body>
+</html>