summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2023-12-15 20:28:51 +0100
committerGravatar default2023-12-15 20:28:51 +0100
commit0dd4739cc674c55de31b935f0c3956bf155216bc (patch)
tree7bc17ee7c8ebb0606f8c8f63c2fd705132be93ec
parentAdded a special check for Undo + Follow. (diff)
downloadsnac2-0dd4739cc674c55de31b935f0c3956bf155216bc.tar.gz
snac2-0dd4739cc674c55de31b935f0c3956bf155216bc.tar.xz
snac2-0dd4739cc674c55de31b935f0c3956bf155216bc.zip
Added some spacing to the Operations... form.
-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)
787 xs_html_attr("name", "actor"), 787 xs_html_attr("name", "actor"),
788 xs_html_attr("required", "required"), 788 xs_html_attr("required", "required"),
789 xs_html_attr("placeholder", "bob@example.com")), 789 xs_html_attr("placeholder", "bob@example.com")),
790 xs_html_text(" "),
790 xs_html_sctag("input", 791 xs_html_sctag("input",
791 xs_html_attr("type", "submit"), 792 xs_html_attr("type", "submit"),
792 xs_html_attr("name", "action"), 793 xs_html_attr("name", "action"),
793 xs_html_attr("value", L("Follow"))), 794 xs_html_attr("value", L("Follow"))),
795 xs_html_text(" "),
794 xs_html_text(L("(by URL or user@host)"))), 796 xs_html_text(L("(by URL or user@host)"))),
795 xs_html_tag("p", NULL), 797 xs_html_tag("p", NULL),
796 xs_html_tag("form", 798 xs_html_tag("form",
@@ -802,10 +804,12 @@ xs_html *html_top_controls(snac *snac)
802 xs_html_attr("name", "id"), 804 xs_html_attr("name", "id"),
803 xs_html_attr("required", "required"), 805 xs_html_attr("required", "required"),
804 xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")), 806 xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")),
807 xs_html_text(" "),
805 xs_html_sctag("input", 808 xs_html_sctag("input",
806 xs_html_attr("type", "submit"), 809 xs_html_attr("type", "submit"),
807 xs_html_attr("name", "action"), 810 xs_html_attr("name", "action"),
808 xs_html_attr("value", L("Boost"))), 811 xs_html_attr("value", L("Boost"))),
812 xs_html_text(" "),
809 xs_html_text(L("(by URL)"))), 813 xs_html_text(L("(by URL)"))),
810 xs_html_tag("p", NULL))); 814 xs_html_tag("p", NULL)));
811 815