-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 1.79 KB
/
index.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>E-Mail Service</title>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="top">
<div class="wrapper">
<form><input type="button" id="send-1" value="Send" name=""></input></form>
<input type="button" value="Save Draft" name=""></input>
<input type="button" value="Discard" name=""></input>
</div>
</div>
<div id="alert">
<span id="closebtn">×</span>
<strong>Warning!</strong> Did you mean to upload an attachment?
</div>
<div class="message">
<div class="input-wrapper">
<label for="to">To:</label>
<input type="text" name="" id="to"><br></br>
</div>
<div class="input-wrapper">
<label for="to">Cc:</label>
<input type="text" name="" id="cc"><br></br>
</div>
<div class="input-wrapper">
<label for="to">Bcc:</label>
<input type="text" name="" id="bcc"><br></br>
</div>
<div class="input-wrapper">
<label for="to">Subject:</label>
<input type="text" name="" id="subject"><br></br>
</div>
<div class="input-wrapper">
<label for "attachments">Attachments:</label>
<input type="file" id="attach"></input>
</div>
<div class="input-wrapper">
<textarea name="" id="message" cols="30" row="20"></textarea>
</div>
</div>
<div class="bottom">
<div class="wrapper">
<form><input type="button" id="send-2" value="Send" name=""></input></form>
<input type="button" value="Save Draft" name=""></input>
<input type="button" value="Discard" name=""></input>
</div>
</div>
</body>
</html>