-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignature.ts
97 lines (95 loc) · 3.75 KB
/
signature.ts
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
87
88
89
90
91
92
93
94
95
96
97
/**
* SudoSOS back-end API service.
* Copyright (C) 2020 Study association GEWIS
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
export const signatureEnglish = `
<table style="width: 100%; max-width: 24em;">
<tbody>
<tr>
<td colspan="3">
<p style="padding-bottom: 1em;">
With kind regards,
</p>
</td>
</tr>
<tr style="vertical-align: top;">
<td rowspan=2>
<div style="border-right: 2px solid black; margin-right: 10px;">
<div style="margin-right:10px;">
<img style="width: 45px; height: 90px;" src="https://gewis.nl/corporateidentity/public/logo/Base_Logo_Colour.png" alt="Logo" width="45" height="90"/>
</div>
</div>
</td>
<td colspan=2>
<b>SudoSOS</b>
<br />
</td>
</tr>
<tr style="vertical-align: bottom;">
<td style="width: 50%;">
<a style="text-decoration: none; color: #D40000;" href="mailto:[email protected]">[email protected]</a> <br>
<a style="text-decoration: none; color: #D40000;" href="https://sudosos.gewis.nl/">sudosos.gewis.nl</a>
</td>
<td style="width: 50%; color: #D40000;">
<div style="border-left: 2px solid black;">
<div style="margin-left: 10px;">
<span style="text-decoration: none;">+31 40 247 2815</span> <br>
<span style="text-decoration: none;">TU Eindhoven</span>
</div>
</div>
</td>
</tr>
</tbody>
</table>`;
export const signatureDutch = `
<table style="width: 100%; max-width: 24em;">
<tbody>
<tr>
<td colspan="3">
<p style="padding-bottom: 1em;">
Met vriendelijke groet,
</p>
</td>
</tr>
<tr style="vertical-align: top;">
<td rowspan=2>
<div style="border-right: 2px solid black; margin-right: 10px;">
<div style="margin-right:10px;">
<img style="width: 45px; height: 90px;" src="https://gewis.nl/corporateidentity/public/logo/Base_Logo_Colour.png" alt="Logo" width="45" height="90"/>
</div>
</div>
</td>
<td colspan=2>
<b>SudoSOS</b>
<br />
</td>
</tr>
<tr style="vertical-align: bottom;">
<td style="width: 50%;">
<a style="text-decoration: none; color: #D40000;" href="mailto:[email protected]">[email protected]</a> <br>
<a style="text-decoration: none; color: #D40000;" href="https://sudosos.gewis.nl/">sudosos.gewis.nl</a>
</td>
<td style="width: 50%; color: #D40000;">
<div style="border-left: 2px solid black;">
<div style="margin-left: 10px;">
<span style="text-decoration: none;">+31 40 247 2815</span> <br>
<span style="text-decoration: none;">TU Eindhoven</span>
</div>
</div>
</td>
</tr>
</tbody>
</table>`;