-
Notifications
You must be signed in to change notification settings - Fork 0
/
emailVerification.html
executable file
·90 lines (90 loc) · 3.63 KB
/
emailVerification.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
87
88
89
90
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="assets/style.css" />
</head>
<body>
<table class="body-wrap">
<tr>
<td></td>
<td class="container" width="600">
<div class="content">
<table class="header" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="content-wrap-small">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="aligncenter">
<a href="https://gamekeller.net">
<img src="assets/icon.png" alt="Gamekeller" width="32" height="32" style="vertical-align: top;" />
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="main" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="content-wrap">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="content-block">
Hey {{username}},
</td>
</tr>
<tr>
<td class="content-block">
{{#if isRegistration}}
um deine Registration bei Gamekeller abzuschließen, bestätige bitte deine E-Mail-Adresse, indem du den folgenden Knopf drückst.
{{else}}
um deine neue E-Mail-Adresse zu bestätigen, drücke bitte auf den folgenden Knopf.
{{/if}}
</td>
</tr>
<tr>
<td class="content-block">
<a href="{{link}}" class="btn-primary">E-Mail-Adresse bestätigen</a>
</td>
</tr>
<tr>
<td>
— Das Gamekeller-Team
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="footer" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="content-wrap-end">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="aligncenter content-block-mini">
Du erhältst diese E-Mail, weil
{{#if isRegistration}}
deine E-Mail-Adresse zur Registration auf <a href="https://gamekeller.net">gamekeller.net</a> verwendet wurde.
{{else}}
die E-Mail-Adresse deines <a href="https://gamekeller.net">gamekeller.net</a>-Accounts geändert wurde.
{{/if}}
</td>
</tr>
<tr>
<td class="aligncenter">
Folge <a href="https://twitter.com/gamekeller">@gamekeller</a> auf Twitter.
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</td>
<td></td>
</tr>
</table>
</body>
</html>