1
0
Fork 0
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:
seu 2018-11-02 11:53:15 +01:00
parent a7937158ff
commit 0a5868addc
4 changed files with 22 additions and 0 deletions

View 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>

View 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
View 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
View file

@ -0,0 +1 @@
Click here: https://{{ domain }}/vks/verify/{{ token }} to verify {{ address }}