32 lines
994 B
HTML
32 lines
994 B
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>
|
|
<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>
|