20 lines
365 B
HTML
20 lines
365 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body { font-family: sans-serif; width: 250px; }
|
|
button { width: 100%; padding: 10px; }
|
|
#result { margin-top: 10px; word-break: break-all; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<button id="generate">Generate Email</button>
|
|
<div id="result"></div>
|
|
|
|
<script src="popup.js"></script>
|
|
|
|
</body>
|
|
</html>
|