diff options
Diffstat (limited to 'module/web/main.html')
-rw-r--r-- | module/web/main.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/module/web/main.html b/module/web/main.html new file mode 100644 index 000000000..87f0d7408 --- /dev/null +++ b/module/web/main.html @@ -0,0 +1,29 @@ +<title>pyLoad - Webinterface</title> +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> + <head> + <title>pyLoad - Webinterface</title> + <script src="main.js" type="text/javascript"></script> + </head> + <body> + <h1>pyLoad - Webinterface</h1> + <div name="status_server"> + Status: running Speed: 600kb/s Files in queue: 0 + </div> + <div name="actions"> + <div id="add_urls"> + <form name="add_urls_form"> + <input type="text" name="new_url" /> + <input type="button" value="Add Link" onclick="addUrl(document.add_urls_form.new_url.value)" > + </form> + </div> + (START) (PAUSE) (ADD) + </div> + <h2>Downloads</h2> + <div id="downloads"> + Lade Downloads + </div> + </body> +</html> + |