-
Notifications
You must be signed in to change notification settings - Fork 36
/
agreement.ejs
74 lines (71 loc) · 1.6 KB
/
agreement.ejs
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
line-height: 1.3;
font-family: 'Helvetica', Arial, sans-serif;
}
h1 {
margin: 0 0 1em;
}
.info {
border-bottom: 1px solid #000;
padding: 0 .2em;
font-weight: bold;
}
.signature-block {
margin-bottom: 3em;
}
.signature-field {
min-height: 25px;
border-bottom: 1px solid #000;
}
.form {
border: 1px solid #000;
}
.form td {
padding: 2px 6px;
border-bottom: 1px solid #000;
border-right: 1px solid #000;
}
.form tr:last-child td {
border-bottom: none;
}
.form td:last-child {
border-right: none;
}
.form label {
font-size: 11px;
margin: 0;
padding: 0;
}
.form td p {
font-size: 14px;
padding: 2px 0 4px;
margin: 0;
}
</style>
</head>
<body>
<h1>Agreement</h1>
<p>This document was signed by <span class="info"><%= name %></span> on behalf of <span class="info"><%= company %></span>.</p>
<div class="signature-block">
<p class="signature-field"><img src="<%= signature %>" height="55"></p>
<p>Name: <%= name %><br>Role: <%= role %><br>Date: <%= date %></p>
</div>
<table class="form" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><label>Company name:</label><p><%= company %></p></td>
<td><label>Country:</label><p><%= country %></p></td>
</tr>
<tr>
<td><label>Name:</label><p><%= name %></p></td>
<td><label>Role:</label><p><%= role %></p></td>
</tr>
<tr>
<td colspan="2"><label>Signature:</label><p><img src="<%= signature %>" height="55"></p></td>
</tr>
</table>
</body>
</html>