initial commit

This commit is contained in:
2025-06-06 19:59:02 -07:00
commit 5b86d31cfd
7 changed files with 345 additions and 0 deletions

23
send.html Normal file
View File

@@ -0,0 +1,23 @@
<!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>