summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-12-15 20:28:51 +0100
committerdefault <nobody@localhost>2023-12-15 20:28:51 +0100
commit0dd4739cc674c55de31b935f0c3956bf155216bc (patch)
tree7bc17ee7c8ebb0606f8c8f63c2fd705132be93ec /html.c
parente9f391ed869bb59c782c1bcfb4beba34b8b70bde (diff)
Added some spacing to the Operations... form.
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/html.c b/html.c
index 60e7140..5f71dea 100644
--- a/html.c
+++ b/html.c
@@ -787,10 +787,12 @@ xs_html *html_top_controls(snac *snac)
xs_html_attr("name", "actor"),
xs_html_attr("required", "required"),
xs_html_attr("placeholder", "bob@example.com")),
+ xs_html_text(" "),
xs_html_sctag("input",
xs_html_attr("type", "submit"),
xs_html_attr("name", "action"),
xs_html_attr("value", L("Follow"))),
+ xs_html_text(" "),
xs_html_text(L("(by URL or user@host)"))),
xs_html_tag("p", NULL),
xs_html_tag("form",
@@ -802,10 +804,12 @@ xs_html *html_top_controls(snac *snac)
xs_html_attr("name", "id"),
xs_html_attr("required", "required"),
xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")),
+ xs_html_text(" "),
xs_html_sctag("input",
xs_html_attr("type", "submit"),
xs_html_attr("name", "action"),
xs_html_attr("value", L("Boost"))),
+ xs_html_text(" "),
xs_html_text(L("(by URL)"))),
xs_html_tag("p", NULL)));