29 lines
842 B
HTML
29 lines
842 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mailcow Temp Mail</title>
|
|
<style>
|
|
body { width: 250px; padding: 10px; font-family: Arial, sans-serif; }
|
|
button, input { width: 100%; padding: 5px; margin-top: 5px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3>Mailcow Temp Mail</h3>
|
|
|
|
<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">
|
|
<button id="fetch">Get My Temp Email</button>
|
|
<button id="generate">Generate New Email</button>
|
|
<button id="copy">Copy to Clipboard</button>
|
|
<button id="logout">Logout</button>
|
|
</div>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|