diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-07 19:09:53 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-10 22:03:18 +0300 |
commit | 21033565488f6c63b4c40962cccfdc8b6ca32b2a (patch) | |
tree | 44732ab7e1c7a7b25e64b82bf61d293f6cff2f86 /www/submit.xhtml | |
parent | 026377d0c145277b24b3af5fdcf707222e854bd3 (diff) |
Add support for package submission
Diffstat (limited to 'www/submit.xhtml')
-rw-r--r-- | www/submit.xhtml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/www/submit.xhtml b/www/submit.xhtml new file mode 100644 index 0000000..f222b1f --- /dev/null +++ b/www/submit.xhtml @@ -0,0 +1,25 @@ +<!-- Note that in HTML5 the boolean attribute absence represents false value, + true otherwise. If it is present then the value must be empty or + case-insensitively match the attribute's name. --> + +<form method="post" enctype="multipart/form-data"> + <table id="submit" class="proplist"> + <tbody> + <tr> + <th>archive</th> + <td> + <input type="file" + name="archive" + accept=".tar.gz" + required="" + autofocus=""/> + </td> + </tr> + <tr> + <th>sha256</th> + <td><input type="text" name="sha256sum" required=""/></td> + </tr> + </tbody> + </table> + <div><input type="submit" value="Submit"/></div> +</form> |