aboutsummaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-08-23 16:50:37 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-08-23 16:50:37 +0200
commite00a1987866a804f2ae6e3206bd583df703663e8 (patch)
treea7d4ce509bc220105d5302ff1172d8556fabf47e /public
parentAdd workspaces to feature list (diff)
downloadferdium-server-e00a1987866a804f2ae6e3206bd583df703663e8.tar.gz
ferdium-server-e00a1987866a804f2ae6e3206bd583df703663e8.tar.zst
ferdium-server-e00a1987866a804f2ae6e3206bd583df703663e8.zip
Add recipe store
Diffstat (limited to 'public')
-rw-r--r--public/new.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/public/new.html b/public/new.html
new file mode 100644
index 0000000..69deafd
--- /dev/null
+++ b/public/new.html
@@ -0,0 +1,40 @@
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <title>Create a new service</title>
8
9 <style>
10 input {
11 margin-bottom: 1rem;
12 }
13 </style>
14</head>
15<body>
16 <h1>Create a new service</h1>
17 <form action="new" method="post" enctype="multipart/form-data">
18 <label for="author">Author</label><br />
19 <input type="text" name="author" placeholder="Jon Doe" required><br />
20
21 <label for="name">Name</label><br />
22 <input type="text" name="name" placeholder="Sample Service" required><br />
23
24 <label for="id">Service ID</label><br />
25 <input type="text" name="id" placeholder="sample-service" required><br />
26
27 <label for="png">Link to PNG image</label><br />
28 <input type="text" name="png" placeholder="https://.../logo.png" required><br />
29
30 <label for="svg">Link to SVG image</label><br />
31 <input type="text" name="svg" placeholder="https://.../logo.svg" required><br />
32
33 <label for="package">Package</label><br />
34 *Please package your service into a .tar.gz file<br />
35 <input type="file" name="package" id="package"><br />
36
37 <button type="submit">Create</button>
38 </form>
39</body>
40</html> \ No newline at end of file