mirror of
https://gitlab.com/hagrid-keyserver/hagrid.git
synced 2023-02-13 20:55:02 -05:00
Email templates
This commit is contained in:
parent
a7937158ff
commit
0a5868addc
4 changed files with 22 additions and 0 deletions
10
web/confirm-email-html.hbs
Normal file
10
web/confirm-email-html.hbs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html lang=en>
|
||||||
|
<head>
|
||||||
|
<meta charset=utf-8>
|
||||||
|
<title>Please confirm deletion of your key</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a href='https://{{ domain }}/vks/confirm/{{ token }}'>Click here</a> to confirm deleting your key.
|
||||||
|
</body>
|
||||||
|
</html>
|
1
web/confirm-email-txt.hbs
Normal file
1
web/confirm-email-txt.hbs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Click here: https://{{ domain }}/vks/confirm/{{ token }} to confirm deleting of your key.
|
10
web/verify-email-html.hbs
Normal file
10
web/verify-email-html.hbs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html lang=en>
|
||||||
|
<head>
|
||||||
|
<meta charset=utf-8>
|
||||||
|
<title>Please verify your email address</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a href='https://{{ domain }}/vks/verify/{{ token }}'>Click here</a> to verify {{ address }}
|
||||||
|
</body>
|
||||||
|
</html>
|
1
web/verify-email-txt.hbs
Normal file
1
web/verify-email-txt.hbs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Click here: https://{{ domain }}/vks/verify/{{ token }} to verify {{ address }}
|
Loading…
Reference in a new issue