1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-24 05:25:37 +00:00

Web UI: Fix login and logout relative URLs

This commit is contained in:
ngosang 2015-05-17 13:48:06 +02:00
parent c92eb1b17d
commit dd71355e8a
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<title>QBT_TR(qBittorrent web User Interface)QBT_TR</title>
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<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.onload = function() {
@ -21,7 +21,7 @@
function submitLoginForm() {
new Request({
url: '/login',
url: 'login',
method: 'post',
data: $('loginform').toQueryString(),
onComplete: function() {

View File

@ -371,7 +371,7 @@ initializeWindows = function() {
addClickEvent('logout', function(e) {
new Event(e).stop();
new Request({
url: '/logout',
url: 'logout',
method: 'get',
onSuccess: function() {
window.location.reload();
@ -396,4 +396,4 @@ initializeWindows = function() {
new Event(e).stop();
});
});
}
}