Added first files - Still needs work

This commit is contained in:
2026-03-10 13:27:49 +00:00
parent 671fbb2a68
commit 6af142d083
8 changed files with 368 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body { font-family: sans-serif; max-width: 500px; margin: 40px auto; }
input { width: 100%; padding: 8px; margin: 8px 0; }
button { padding: 10px; }
</style>
</head>
<body>
<h2>Mailcow Settings</h2>
<label>Mailcow URL</label>
<input id="server">
<label>Domain</label>
<input id="domain">
<label>API Key</label>
<input id="apikey">
<button id="save">Save</button>
<p id="status"></p>
<script src="options.js"></script>
</body>
</html>