diff options
| author | 2023-12-15 20:28:51 +0100 | |
|---|---|---|
| committer | 2023-12-15 20:28:51 +0100 | |
| commit | 0dd4739cc674c55de31b935f0c3956bf155216bc (patch) | |
| tree | 7bc17ee7c8ebb0606f8c8f63c2fd705132be93ec /html.c | |
| parent | Added a special check for Undo + Follow. (diff) | |
| download | snac2-0dd4739cc674c55de31b935f0c3956bf155216bc.tar.gz snac2-0dd4739cc674c55de31b935f0c3956bf155216bc.tar.xz snac2-0dd4739cc674c55de31b935f0c3956bf155216bc.zip | |
Added some spacing to the Operations... form.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 4 |
1 files changed, 4 insertions, 0 deletions
| @@ -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 | ||