diff options
Diffstat (limited to 'web-static/upload-form.html')
-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> |