diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-01-10 16:20:31 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-01-10 16:20:31 +0100 |
commit | 3d655ddbfbd96abecb9a9c9bebf6e43eb710ab12 (patch) | |
tree | dc1ce469a6c75ce5f44561cf1d2c3c269ef90f94 /module/web/templates/default/window.html | |
parent | moved Hooks.py (diff) | |
download | pyload-3d655ddbfbd96abecb9a9c9bebf6e43eb710ab12.tar.xz |
fixed manage.py, addBox working, some code formatted and cleaned
Diffstat (limited to 'module/web/templates/default/window.html')
-rw-r--r-- | module/web/templates/default/window.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/module/web/templates/default/window.html b/module/web/templates/default/window.html index ec4ca496a..fa49565d3 100644 --- a/module/web/templates/default/window.html +++ b/module/web/templates/default/window.html @@ -2,10 +2,11 @@ <div id="add_box" style="left:50%; top:200px; margin-left: -450px; width: 900px; position: absolute; background: #FFF; padding: 10px 10px 10px 10px; display:none;">
<div style="width: 900px; text-align: right;"><b onclick="AddBox();">[Close]</b></div>
<h1>Add</h1>
- <form id="add_form" action="" method="post" onsubmit="return AddSubmit();">
+ <form id="add_form" action="json/add_package" method="post">
+ Packagename<input name="add_name" type="text" size="20" />
<textarea rows="5" style="width: 890px;" name="add_links" id="add_links"></textarea>
<br />
- <input type="file" name="add_cf" id="add_cf" />
- <input type="submit" value="Add Links" />
+ <input type="file" name="add_file" id="add_file" />
+ <input id="add_submit" type="submit" value="Add Links"/>
</form>
</div>
|