This commit is contained in:
Kaby_Kun 2025-02-20 00:16:47 +01:00
parent 05cfd6aaf8
commit ea1efecfea
3 changed files with 44 additions and 134 deletions

View file

@ -1,32 +1,20 @@
<!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>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>🐮 Mailcow Temp Mail</h2>
<div id="login-form">
<input type="text" id="username" placeholder="📧 Email">
<input type="password" id="password" placeholder="🔒 Password">
<button id="login">Login</button>
</div>
<div id="email-form" style="display: none;">
<input type="text" id="email" readonly placeholder="No email found">
<div class="button-group">
<button id="fetch">🔄 Get My Temp Email</button>
<button id="generate">✨ Generate New Email</button>
</div>
<button id="copy">📋 Copy to Clipboard</button>
<button id="logout" class="logout">🚪 Logout</button>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>
<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>