Vladimir Golovnev (Glassez)
10 years ago
39 changed files with 174 additions and 83 deletions
After Width: | Height: | Size: 1.5 KiB |
@ -1,37 +1,39 @@ |
|||||||
<!DOCTYPE RCC><RCC version="1.0"> |
<RCC> |
||||||
<qresource prefix="webui/"> |
<qresource prefix="/"> |
||||||
<file>html/index.html</file> |
<file>www/private/index.html</file> |
||||||
<file>html/download.html</file> |
<file>www/private/login.html</file> |
||||||
<file>html/addtrackers.html</file> |
<file>www/public/css/Core.css</file> |
||||||
<file>html/upload.html</file> |
<file>www/public/css/dynamicTable.css</file> |
||||||
<file>html/about.html</file> |
<file>www/public/css/Layout.css</file> |
||||||
<file>html/filters.html</file> |
<file>www/public/css/style.css</file> |
||||||
<file>html/transferlist.html</file> |
<file>www/public/css/Tabs.css</file> |
||||||
<file>html/prop-general.html</file> |
<file>www/public/css/Window.css</file> |
||||||
<file>html/prop-trackers.html</file> |
<file>www/public/scripts/client.js</file> |
||||||
<file>html/prop-files.html</file> |
<file>www/public/scripts/contextmenu.js</file> |
||||||
<file>html/properties.html</file> |
<file>www/public/scripts/download.js</file> |
||||||
<file>html/uploadlimit.html</file> |
<file>www/public/scripts/dynamicTable.js</file> |
||||||
<file>html/downloadlimit.html</file> |
<file>www/public/scripts/excanvas-compressed.js</file> |
||||||
<file>html/preferences.html</file> |
<file>www/public/scripts/mocha.js</file> |
||||||
<file>html/preferences_content.html</file> |
<file>www/public/scripts/mocha-init.js</file> |
||||||
<file>html/confirmdeletion.html</file> |
<file>www/public/scripts/mocha-yc.js</file> |
||||||
<file>css/Core.css</file> |
<file>www/public/scripts/mootools-1.2-core-yc.js</file> |
||||||
<file>css/Layout.css</file> |
<file>www/public/scripts/mootools-1.2-more.js</file> |
||||||
<file>css/Window.css</file> |
<file>www/public/scripts/parametrics.js</file> |
||||||
<file>css/Tabs.css</file> |
<file>www/public/scripts/progressbar.js</file> |
||||||
<file>css/dynamicTable.css</file> |
<file>www/public/about.html</file> |
||||||
<file>css/style.css</file> |
<file>www/public/addtrackers.html</file> |
||||||
<file>scripts/excanvas-compressed.js</file> |
<file>www/public/confirmdeletion.html</file> |
||||||
<file>scripts/mocha-yc.js</file> |
<file>www/public/download.html</file> |
||||||
<file>scripts/mocha-init.js</file> |
<file>www/public/downloadlimit.html</file> |
||||||
<file>scripts/mootools-1.2-core-yc.js</file> |
<file>www/public/filters.html</file> |
||||||
<file>scripts/mootools-1.2-more.js</file> |
<file>www/public/preferences.html</file> |
||||||
<file>scripts/dynamicTable.js</file> |
<file>www/public/preferences_content.html</file> |
||||||
<file>scripts/client.js</file> |
<file>www/public/properties.html</file> |
||||||
<file>scripts/download.js</file> |
<file>www/public/prop-files.html</file> |
||||||
<file>scripts/progressbar.js</file> |
<file>www/public/prop-general.html</file> |
||||||
<file>scripts/contextmenu.js</file> |
<file>www/public/prop-trackers.html</file> |
||||||
<file>scripts/parametrics.js</file> |
<file>www/public/transferlist.html</file> |
||||||
</qresource> |
<file>www/public/upload.html</file> |
||||||
|
<file>www/public/uploadlimit.html</file> |
||||||
|
</qresource> |
||||||
</RCC> |
</RCC> |
||||||
|
@ -0,0 +1,76 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" dir="ltr"> |
||||||
|
<head> |
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=8" /> |
||||||
|
<title>qBittorrent web User Interface</title> |
||||||
|
<link rel="stylesheet" type="text/css" href="/css/style.css" /> |
||||||
|
<script type="text/javascript" src="scripts/mootools-1.2-core-yc.js" charset="utf-8"></script> |
||||||
|
<script type="text/javascript"> |
||||||
|
window.addEvent('domready', function() { |
||||||
|
$('loginform').addEvent('submit', function(e) { |
||||||
|
new Event(e).stop(); |
||||||
|
submitLoginForm(); |
||||||
|
}); |
||||||
|
}); |
||||||
|
|
||||||
|
function submitLoginForm() { |
||||||
|
new Request({ |
||||||
|
url: '/login', |
||||||
|
method: 'post', |
||||||
|
data: $('loginform').toQueryString(), |
||||||
|
onFailure: function() { |
||||||
|
alert("_(Unable to log in, qBittorrent is probably unreachable.)"); |
||||||
|
}, |
||||||
|
onSuccess: function(text) { |
||||||
|
if (text == "Ok.") { |
||||||
|
// Session started. Simply reload page. |
||||||
|
window.location.reload(); |
||||||
|
} else { |
||||||
|
$('error_msg').set('html', '_(Invalid Username or Password.)'); |
||||||
|
} |
||||||
|
} |
||||||
|
}).send(); |
||||||
|
} |
||||||
|
</script> |
||||||
|
<style> |
||||||
|
.col { |
||||||
|
display: inline-block; |
||||||
|
vertical-align: middle; |
||||||
|
} |
||||||
|
.row { |
||||||
|
margin-bottom: 5px; |
||||||
|
} |
||||||
|
#main { |
||||||
|
margin-left: auto; |
||||||
|
margin-right: auto; |
||||||
|
text-align: center; |
||||||
|
padding-top: 5em; |
||||||
|
} |
||||||
|
#formplace { |
||||||
|
text-align: left; |
||||||
|
padding: 10px; |
||||||
|
} |
||||||
|
#error_msg { |
||||||
|
color: #f00; |
||||||
|
} |
||||||
|
</style> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<div id="main"> |
||||||
|
<h1>_(qBittorrent web User Interface)</h1> |
||||||
|
<div id="logo" class="col"> |
||||||
|
<img src="images/skin/mascot.png" /> |
||||||
|
</div> |
||||||
|
<div id="formplace" class="col"> |
||||||
|
<form id="loginform" action=""> |
||||||
|
<div class="row"><label for="username">_(Name)</label><br /><input type="text" id="username" name="username" /></div> |
||||||
|
<div class="row"><label for="password">_(Password)</label><br /><input type="password" id="password" name="password" /></div> |
||||||
|
<div class="row"><input type="submit" id="login" value="_(Login)" /></div> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
<div id="error_msg"></div> |
||||||
|
</div> |
||||||
|
</body> |
||||||
|
</html> |
Loading…
Reference in new issue