20 lines
523 B
HTML
20 lines
523 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Inbox - Bang Webmail</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Inbox</h2>
|
|
<button onclick="logout()">Logout</button>
|
|
<button onclick="location.href='send.html'">Compose</button>
|
|
<div id="inboxList"></div>
|
|
<p id="inboxError" class="error"></p>
|
|
</div>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|