19 lines
613 B
HTML
19 lines
613 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Mailcow Temp Mail</title>
|
|
<style>
|
|
body { width: 250px; padding: 10px; font-family: Arial, sans-serif; }
|
|
button { width: 100%; padding: 5px; margin-top: 5px; }
|
|
input { width: 100%; padding: 5px; margin-bottom: 5px; text-align: center; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3>Mailcow Temp Mail</h3>
|
|
<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>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|