summaryrefslogtreecommitdiff
path: root/web-static
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-04-02 16:10:36 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-04-02 16:10:36 (GMT)
commit8933910f9846bac630bf0dab06a4b7cd6b2b5ce3 (patch)
treeb5babbb14840c9fcac437c1122fd7d8071d9367e /web-static
parent24420034428f6bafc41b34e9b8a6316b4f2aa65e (diff)
added http static dir for static files
Diffstat (limited to 'web-static')
-rw-r--r--web-static/upload-form.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/web-static/upload-form.html b/web-static/upload-form.html
new file mode 100644
index 0000000..bbb397c
--- /dev/null
+++ b/web-static/upload-form.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>rhimportd File Upload</title>
+ </head>
+ <body>
+ <div class="container">
+ <h1>rhimportd File Upload</h1>
+ <form class="form-upload" method="post" action="/public/upload" enctype="multipart/form-data">
+ <fieldset>
+ <label for="LOGIN_NAME">Username:</label>
+ <input type="text" name="LOGIN_NAME">
+ </br>
+ <label for="LOGIN_NAME">Password:</label>
+ <input type="password" name="PASSWORD">
+ </br>
+ <label for="FILENAME">File:</label>
+ <input type="file" name="FILENAME">
+ </br>
+ <input type="submit" name="submit" value="Submit">
+ </fieldset>
+ </form>
+ </div>
+ </body>
+</html>