2022-04-01 01:40:39 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>TubeArchivist Companion</title>
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapi.com/css?family=Sen" type="text/css">
|
2022-04-03 14:32:46 +00:00
|
|
|
<link rel="stylesheet" href="style.css">
|
2022-04-01 01:40:39 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
2022-04-03 14:25:01 +00:00
|
|
|
<div class="logo">
|
2022-05-30 11:32:12 +00:00
|
|
|
<a href="#" id="ta-url" target="_blank">
|
|
|
|
<img src="/images/logo.png" alt="ta-logo">
|
|
|
|
</a>
|
2022-06-03 10:07:48 +00:00
|
|
|
<span>v0.0.2</span>
|
2022-04-03 14:25:01 +00:00
|
|
|
</div>
|
2022-04-01 01:40:39 +00:00
|
|
|
<hr>
|
2022-04-01 08:30:49 +00:00
|
|
|
<div class="youtube-page" id="download"></div>
|
2022-04-01 01:40:39 +00:00
|
|
|
<form class="login-form">
|
2022-05-03 22:42:31 +00:00
|
|
|
<label for="url">Tube Archivist IP:</label>
|
2022-04-01 01:40:39 +00:00
|
|
|
<input type="text" id="url" name="url">
|
|
|
|
<label for="port">Tube Archivist Port:</label>
|
|
|
|
<input type="text" id="port" name="port">
|
2022-05-03 22:42:31 +00:00
|
|
|
<label for="api-key">Tube Archivist API Key:</label>
|
2022-04-01 01:40:39 +00:00
|
|
|
<input type="password" id="api-key" name="api-key">
|
|
|
|
</form>
|
|
|
|
<div class="submit">
|
2022-04-04 13:38:07 +00:00
|
|
|
<button id="save-login">Save</button><span id="status-icon">☐</span>
|
2022-04-01 01:40:39 +00:00
|
|
|
</div>
|
|
|
|
<div class="icons">
|
|
|
|
<div>
|
|
|
|
<a href="https://www.reddit.com/r/TubeArchivist/" target="_blank">
|
2022-05-03 22:42:31 +00:00
|
|
|
<img src="/images/social/reddit.svg" alt="reddit-icon"></a>
|
2022-04-01 01:40:39 +00:00
|
|
|
<a href="https://discord.gg/AFwz8nE7BK" target="_blank">
|
2022-05-03 22:42:31 +00:00
|
|
|
<img src="/images/social/discord.svg" alt="discord-icon"></a>
|
2022-04-15 15:48:59 +00:00
|
|
|
<a href="https://github.com/tubearchivist/tubearchivist" target="_blank">
|
2022-04-01 01:40:39 +00:00
|
|
|
<img src="/images/social/github.svg" alt="github-icon">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<a href="#">
|
|
|
|
<img src="/images/question.svg" alt="question-icon">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript" src="popup.js"></script>
|
|
|
|
</body>
|
2022-05-03 22:42:31 +00:00
|
|
|
</html>
|