2019-10-13 22:59:28 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2020-01-07 11:48:38 +01:00
|
|
|
<meta charset="UTF-8">
|
2020-01-03 13:01:50 +01:00
|
|
|
<title>Tabs</title>
|
2019-10-13 22:59:28 +02:00
|
|
|
|
2021-05-25 12:14:52 +02:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="style-src 'self' 'unsafe-inline'; font-src 'self'; script-src 'self' 'sha256-oPC0l5nxLnJ2LX6qU9Laxa4/cjhuHDRIqdUsBDWYqnw='">
|
2019-10-13 22:59:28 +02:00
|
|
|
|
2020-05-25 06:16:28 +02:00
|
|
|
<link rel="stylesheet" href="css/layout.css">
|
|
|
|
<link rel="stylesheet" href="css/index.css">
|
2020-01-10 15:14:41 +01:00
|
|
|
|
2020-05-26 09:36:37 +02:00
|
|
|
<script>require('./js/index.js')</script>
|
2019-10-13 22:59:28 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="navigation">
|
|
|
|
<div id="history">
|
2020-05-20 17:13:33 +02:00
|
|
|
<button id="status" class="hidden">
|
2020-05-19 07:00:14 +02:00
|
|
|
<i class="fas fa-question unknown active">
|
|
|
|
<span class="tip">Unknown protocol</span>
|
|
|
|
</i>
|
|
|
|
<i class="fas fa-lock https">
|
|
|
|
<span class="tip">Secured via TLS (https)</span>
|
|
|
|
</i>
|
|
|
|
<i class="fas fa-lock-open http">
|
|
|
|
<span class="tip">Vulnerable connection (http)</span>
|
|
|
|
</i>
|
2020-05-19 07:23:27 +02:00
|
|
|
<i class="fas fa-folder file">
|
|
|
|
<span class="tip">Local file</span>
|
|
|
|
</i>
|
2020-05-19 07:00:14 +02:00
|
|
|
</button>
|
2020-05-20 17:13:33 +02:00
|
|
|
<button id="home" class="hidden disabled"><i class="fas fa-home"></i></button>
|
|
|
|
<button id="back" class="hidden disabled"><i class="fas fa-arrow-left"></i></button>
|
|
|
|
<button id="forward" class="hidden disabled"><i class="fas fa-arrow-right"></i></button>
|
|
|
|
<button id="reload" class="hidden disabled"><i class="fas fa-redo"></i></button>
|
2019-10-13 22:59:28 +02:00
|
|
|
</div>
|
|
|
|
|
2020-05-19 04:57:52 +02:00
|
|
|
<div id="service-buttons">
|
|
|
|
<ul id="service-selector"></ul>
|
|
|
|
<div id="service-last-drag-position" class="hidden"></div>
|
|
|
|
</div>
|
2019-10-13 22:59:28 +02:00
|
|
|
|
|
|
|
<button id="add-button"><i class="fa fa-plus"></i></button>
|
|
|
|
|
|
|
|
<button id="settings-button"><i class="fa fa-cog"></i></button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="services">
|
|
|
|
<div class="loader"></div>
|
2020-07-10 14:08:31 +02:00
|
|
|
<div id="url-preview" class="invisible"></div>
|
2020-05-05 21:56:07 +02:00
|
|
|
<div id="empty-message">Load a service using the menu on the left.</div>
|
2019-10-13 22:59:28 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
2020-03-06 15:19:06 +01:00
|
|
|
</html>
|