Files
bang-web/send.html
2025-06-06 19:59:02 -07:00

24 lines
754 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Send Email - Bang Webmail</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>Compose Email</h2>
<form id="sendForm">
<input type="text" id="to" placeholder="To" required><br>
<input type="text" id="subject" placeholder="Subject" required><br>
<textarea id="body" placeholder="Message" required></textarea><br>
<button type="submit">Send</button>
</form>
<p id="sendError" class="error"></p>
<button onclick="location.href='inbox.html'">Back to Inbox</button>
</div>
<script src="main.js"></script>
</body>
</html>