-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·47 lines (42 loc) · 1.18 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
<!doctype html>
<html>
<head>
<title>TrunkMail</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="email">
<div class="form-row">
<label>
<span class="field-name">To:</span>
<input type="text" name="to" class="required" />
</label>
<div class="autocomplete-list"></div>
</div>
<div class="form-row">
<label>
<span class="field-name">CC:</span>
<input type="text" name="cc" />
</label>
<div class="autocomplete-list"></div>
</div>
<div class="form-row">
<label>
<span class="field-name">Subject:</span>
<input type="text" name="subject" class="required" />
</label>
</div>
<div class="form-row">
<label>
<span class="field-name">Body:</span>
<textarea name="body" class="required"></textarea>
</label>
</div>
<button class="sendEmail">Send</button>
</div>
<script src="jquery-3.2.1.min.js"></script>
<script src="lodash.js"></script>
<script src="autocomplete.js"></script>
<script src="email.js"></script>
</body>
</html>