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>
body {
background-color: #0073b7; /* Mailcow Blue */
color: white;
font-family: Arial, sans-serif;
}
input, button {
border-radius: 5px;
padding: 10px;
margin: 5px;
}
button {
background-color: #005f8c;
color: white;
border: none;
}
button:hover {
background-color: #004f74;
}
</style>
<!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>