-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.39 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bear Mail</title>
<link rel="stylesheet" href="styling/basic.css">
</head>
<body>
<div id="app">
<h1>Bear Mail</h1>
<h2>A bare necessities email client</h2>
<!-- Moving to Login Page
<div class="login">
<h2>Login</h2>
<form id="login-form">
<input type="email" id="email" placeholder="Email" required>
<input type="password" id="password" placeholder="Password" required>
<button type="button-submit">Login</button>
</form>
</div> -->
<div class="compose">
<h3>Compose</h3>
<form id="email-form">
<input type="email" id="to" placeholder="To:" required>
<input type="text" id="subject" placeholder="Subject">
<textarea id="body" placeholder="Body" rows="25" required></textarea>
</form>
<div class="container">
<button class="button" role="button">Send</button>
</div>
</div>
<div class="inbox">
<h3>Inbox</h3>
<div id="emails"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>