31 lines
508 B
HTML
31 lines
508 B
HTML
<!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>
|