diff options
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 17 |
1 files changed, 17 insertions, 0 deletions
| @@ -1034,6 +1034,23 @@ xs_html *html_top_controls(snac *snac) | |||
| 1034 | xs_html_attr("value", L("Boost"))), | 1034 | xs_html_attr("value", L("Boost"))), |
| 1035 | xs_html_text(" "), | 1035 | xs_html_text(" "), |
| 1036 | xs_html_text(L("(by URL)"))), | 1036 | xs_html_text(L("(by URL)"))), |
| 1037 | xs_html_tag("p", NULL), | ||
| 1038 | xs_html_tag("form", | ||
| 1039 | xs_html_attr("autocomplete", "off"), | ||
| 1040 | xs_html_attr("method", "post"), | ||
| 1041 | xs_html_attr("action", ops_action), | ||
| 1042 | xs_html_sctag("input", | ||
| 1043 | xs_html_attr("type", "text"), | ||
| 1044 | xs_html_attr("name", "id"), | ||
| 1045 | xs_html_attr("required", "required"), | ||
| 1046 | xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")), | ||
| 1047 | xs_html_text(" "), | ||
| 1048 | xs_html_sctag("input", | ||
| 1049 | xs_html_attr("type", "submit"), | ||
| 1050 | xs_html_attr("name", "action"), | ||
| 1051 | xs_html_attr("value", L("Like"))), | ||
| 1052 | xs_html_text(" "), | ||
| 1053 | xs_html_text(L("(by URL)"))), | ||
| 1037 | xs_html_tag("p", NULL))); | 1054 | xs_html_tag("p", NULL))); |
| 1038 | 1055 | ||
| 1039 | /** user settings **/ | 1056 | /** user settings **/ |