diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | html.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -11,6 +11,7 @@ A simple, minimalistic ActivityPub instance - Tested interoperability with related software - No database needed - Totally JavaScript-free +- No cookies either - Not much bullshit # About @@ -449,6 +449,7 @@ d_char *html_entry_controls(snac *snac, d_char *os, char *msg, int num) "<textarea class=\"snac-textarea\" name=\"content\" " "rows=\"4\" wrap=\"virtual\" required=\"required\">%s</textarea>\n" "<input type=\"hidden\" name=\"in_reply_to\" value=\"%s\">\n" + "<p><input type=\"checkbox\" name=\"sensitive\"> %s\n" "<p><input type=\"file\" name=\"attach\">\n" "<p><input type=\"submit\" class=\"button\" value=\"%s\">\n" "</form><p></div>\n" @@ -460,6 +461,7 @@ d_char *html_entry_controls(snac *snac, d_char *os, char *msg, int num) snac->actor, md5, ct, id, + L("Sensitive content"), L("Post") ); |