This commit is contained in:
Gabriel Peron 2025-02-20 00:17:36 +01:00
parent ea2cc6e5f7
commit 00831bb0c2

View file

@ -1,20 +1,40 @@
<style> <!DOCTYPE html>
body { <html lang="en">
background-color: #0073b7; /* Mailcow Blue */ <head>
color: white; <meta charset="UTF-8">
font-family: Arial, sans-serif; <meta name="viewport" content="width=device-width, initial-scale=1.0">
} <title>Mailcow Temp Mail</title>
input, button { <style>
border-radius: 5px; body {
padding: 10px; background-color: #0073b7; /* Mailcow Blue */
margin: 5px; color: white;
} font-family: Arial, sans-serif;
button { width: 250px;
background-color: #005f8c; text-align: center;
color: white; }
border: none; input, button {
} width: 80%;
button:hover { border-radius: 5px;
background-color: #004f74; padding: 10px;
} margin: 5px;
</style> border: none;
}
button {
background-color: #005f8c;
color: white;
cursor: pointer;
}
button:hover {
background-color: #004f74;
}
</style>
</head>
<body>
<h2>Mailcow Login</h2>
<input type="text" id="email" placeholder="Email">
<input type="password" id="password" placeholder="Password">
<button id="login-btn">Login</button>
<p id="status"></p>
<script src="popup.js"></script>
</body>
</html>