diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-04-02 16:53:16 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-04-02 16:53:16 (GMT) |
commit | 374cabeb4d2d59b588e9d4a30e3c09e2dbc0abdd (patch) | |
tree | 06bd6587085c6a572bee5077c440b445a4479b6a /web-static | |
parent | 27eaf84de6c5900c739f73725bd07270d43d49b7 (diff) | |
parent | 761d6d0824c0cc92fc746b77499ac563f4e6e579 (diff) |
Merge branch 'upload-feature'
Diffstat (limited to 'web-static')
-rw-r--r-- | web-static/upload-form.html | 25 |
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> |