diff --git a/html.c b/html.c
index 1256cea..9cf0815 100644
--- a/html.c
+++ b/html.c
@@ -242,6 +242,9 @@ d_char *html_top_controls(snac *snac, d_char *s)
"
%s:
\n"
"
\n"
+ "%s:
\n"
+ "
\n"
+
"%s:
\n"
"
\n"
@@ -257,6 +260,10 @@ d_char *html_top_controls(snac *snac, d_char *s)
"\n"
"\n";
+ char *email = xs_dict_get(snac->config, "email");
+ if (xs_is_null(email))
+ email = "";
+
xs *s1 = xs_fmt(_tmpl,
snac->actor,
L("Post"),
@@ -277,6 +284,8 @@ d_char *html_top_controls(snac *snac, d_char *s)
xs_dict_get(snac->config, "avatar"),
L("Bio"),
xs_dict_get(snac->config, "bio"),
+ L("Email address for notifications"),
+ email,
L("Password (only to change it)"),
L("Repeat Password"),
L("Update user info")
@@ -1053,6 +1062,8 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size,
snac.config = xs_dict_set(snac.config, "avatar", v);
if ((v = xs_dict_get(p_vars, "bio")) != NULL)
snac.config = xs_dict_set(snac.config, "bio", v);
+ if ((v = xs_dict_get(p_vars, "email")) != NULL)
+ snac.config = xs_dict_set(snac.config, "email", v);
/* password change? */
if ((p1 = xs_dict_get(p_vars, "passwd1")) != NULL &&