diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-06-16 16:26:27 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-06-19 11:48:10 +0200 |
commit | fb9fa1b6365c1c13e00c35257e53eebf610f0c6c (patch) | |
tree | 930f61cfee6993158b176eed036bb0ecbf35de88 /views | |
parent | 4fb5d7ac18b8121044ed1b01dc6000161985b089 (diff) | |
download | server-fb9fa1b6365c1c13e00c35257e53eebf610f0c6c.tar.gz |
Add mail notifications.
Diffstat (limited to 'views')
-rw-r--r-- | views/profile.ejs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/views/profile.ejs b/views/profile.ejs index 0b3f20f..02f6e72 100644 --- a/views/profile.ejs +++ b/views/profile.ejs @@ -13,6 +13,15 @@ Your mail address is <%= user.mail %>. <br clear=left> <p> +<% + if (user.notifications) { + %><a href="/unsubscribe">Disable mail notifications</a><% + } else { + %><a href="/subscribe">Enable mail notifications</a><% + } +%> + +<p> <a href="/change_password">Change password</a> <p> |