46 lines
1.7 KiB
HTML
Raw Normal View History

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">
<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">
<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">
<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">
<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">
<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">
<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>