firefox-email-mailcow-tempe.../Files/popup.html
2025-02-20 00:17:36 +01:00

40 lines
1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mailcow Temp Mail</title>
<style>
body {
background-color: #0073b7; /* Mailcow Blue */
color: white;
font-family: Arial, sans-serif;
width: 250px;
text-align: center;
}
input, button {
width: 80%;
border-radius: 5px;
padding: 10px;
margin: 5px;
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>