-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (86 loc) · 2.54 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>J Swap Email Signature Generator</title>
<style>
form div {
padding: 10px;
}
form div + div {
border-top: 1px solid #ddd;
}
form span {
display: block;
}
form input[type=text],
form input[type=tel] {
width: 200px;
}
form button {
padding: 15px;
}
</style>
</head>
<body>
<div>Fill in these details:</div>
<br>
<form>
<div>
<span>Use Stockfoods Logo?</span>
<input type="checkbox" name="usestockfoods" />
</div>
<div>
<span>Name</span>
<input type="text" name="name" value="Joe Bloggs" />
</div>
<div>
<span>Title</span>
<input type="text" name="title" value="Archive Room Attendant" />
</div>
<div>
<span>First Number</span>
<input type="tel" name="phone1" value="021 555 1234" />
</div>
<div>
<span>Second Number (leave blank to skip)</span>
<input type="tel" name="phone2" value="0800 457 927" />
</div>
<div>
<span>Third Number (leave blank to skip)</span>
<input type="tel" name="phone3" value="" />
</div>
<div>
<button>Update Signature</button>
</div>
</form>
<br>
<br>
<div>Click and drag from here:</div>
<br>
<div>
<br>
<table style="border-spacing: 0;">
<tr>
<td style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; border-right: 4px solid #fbae17; padding: 5px 15px 5px 0; white-space: nowrap; min-width: 380px; width: 380px;">
<div style="padding-bottom: 3px; font-size: 16px;">
<span id="name">Joe Bloggs</span>
<span style="font-weight: normal;"> — </span>
<span id="title">Archive Room Attendant</span>
</div>
<div id="numbers" style="font-size: 14px; color: #f89a3f; font-weight: bold;">021 555 1234 • 0800 457 927</div>
</td>
<td style="padding-left: 15px; vertical-align: middle; width: 135px;">
<a id="link" href="http://jswap.co.nz" style="padding: 0; margin: 0;"><img id="logo" src="./contractors.png" width="120" height="49" style="padding: 0; margin: 0;" /></a>
</td>
</tr>
</table>
<br>
</div>
<br>
<div>To here and copy and paste into Outlook.</div>
<br>
<script src="./index.js"></script>
</body>
</html>