summaryrefslogtreecommitdiff
path: root/web-static/upload-form.html
diff options
context:
space:
mode:
Diffstat (limited to 'web-static/upload-form.html')
-rw-r--r--web-static/upload-form.html29
1 files changed, 16 insertions, 13 deletions
diff --git a/web-static/upload-form.html b/web-static/upload-form.html
index 8d41a6e..8910a37 100644
--- a/web-static/upload-form.html
+++ b/web-static/upload-form.html
@@ -3,23 +3,26 @@
<head>
<meta charset="utf-8">
<title>rhimportd File Upload</title>
+ <style type="text/css">
+ body {
+ background-color: #555;
+ }
+
+ td.label {
+ text-align: right;
+ }
+ </style>
</head>
<body>
<div class="container">
<h1>rhimportd File Upload</h1>
- <form class="form-upload" method="post" action="https://import.helsinki.at/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 class="form-upload" method="post" action="/public/upload" enctype="multipart/form-data">
+ <table>
+ <tr><td class="label">Username</td><td><input type="text" name="LOGIN_NAME" size="20" value="heslinki" /></td></tr>
+ <tr><td class="label">Token</td><td><input type="password" name="PASSWORD" size="20" /></td></tr>
+ <tr><td class="label">File</td><td><input type="file" name="FILENAME" /></td></tr>
+ <tr><td>&nbsp;</td><td><input type="submit" name="submit" value="Submit"></td></tr>
+ </table>
</form>
</div>
</body>