2022-10-18 22:39:32 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="${LANG}">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2024-01-05 21:02:42 +01:00
|
|
|
<meta name="robots" content="noindex">
|
2022-11-30 13:49:48 -05:00
|
|
|
<title>qBittorrent Web UI</title>
|
2022-10-18 22:39:32 -04:00
|
|
|
<link rel="icon" type="image/png" href="images/qbittorrent32.png" />
|
|
|
|
<link rel="icon" type="image/svg+xml" href="images/qbittorrent-tray.svg" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/login.css?v=${CACHEID}" />
|
|
|
|
<noscript>
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/noscript.css?v=${CACHEID}" />
|
|
|
|
</noscript>
|
|
|
|
<script src="scripts/login.js?locale=${LANG}&v=${CACHEID}"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<noscript id="noscript">
|
2022-11-30 13:49:48 -05:00
|
|
|
<h1>JavaScript Required! You must enable JavaScript for the Web UI to work properly</h1>
|
2022-10-18 22:39:32 -04:00
|
|
|
</noscript>
|
|
|
|
<div id="main">
|
2022-11-30 13:49:48 -05:00
|
|
|
<h1>qBittorrent Web UI</h1>
|
2022-10-18 22:39:32 -04:00
|
|
|
<div id="logo" class="col">
|
|
|
|
<img src="images/qbittorrent-tray.svg" alt="qBittorrent logo" />
|
|
|
|
</div>
|
|
|
|
<div id="formplace" class="col">
|
|
|
|
<form id="loginform" method="post" onsubmit="submitLoginForm();">
|
|
|
|
<div class="row">
|
2022-11-30 13:49:48 -05:00
|
|
|
<label for="username">Username</label><br />
|
2022-10-18 22:39:32 -04:00
|
|
|
<input type="text" id="username" name="username" autocomplete="username" />
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2022-11-30 13:49:48 -05:00
|
|
|
<label for="password">Password</label><br />
|
2022-10-18 22:39:32 -04:00
|
|
|
<input type="password" id="password" name="password" autocomplete="current-password" />
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2022-11-30 13:49:48 -05:00
|
|
|
<input type="submit" id="login" value="Login" />
|
2022-10-18 22:39:32 -04:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div id="error_msg"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|