Dateien hochladen nach „“

This commit is contained in:
2023-11-01 16:14:22 +01:00
parent 678478f164
commit 2baf5c28c9
4 changed files with 100 additions and 0 deletions

17
options.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<meta charset="UTF-8">
<html>
<head>
<title>Einstellungen</title>
<script src="options.js"></script>
</head>
<body>
<h1>Server hinzufügen oder entfernen</h1>
<label for="server-url">Server URL:</label>
<input type="text" id="server-url" placeholder="https://example.com">
<button id="add-server">Hinzufügen</button>
<ul id="server-list">
<!-- Hier werden die hinzugefügten Server angezeigt -->
</ul>
</body>
</html>