mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
Added some spacing to the Operations... form.
This commit is contained in:
parent
e9f391ed86
commit
0dd4739cc6
1 changed files with 4 additions and 0 deletions
4
html.c
4
html.c
|
@ -787,10 +787,12 @@ xs_html *html_top_controls(snac *snac)
|
||||||
xs_html_attr("name", "actor"),
|
xs_html_attr("name", "actor"),
|
||||||
xs_html_attr("required", "required"),
|
xs_html_attr("required", "required"),
|
||||||
xs_html_attr("placeholder", "bob@example.com")),
|
xs_html_attr("placeholder", "bob@example.com")),
|
||||||
|
xs_html_text(" "),
|
||||||
xs_html_sctag("input",
|
xs_html_sctag("input",
|
||||||
xs_html_attr("type", "submit"),
|
xs_html_attr("type", "submit"),
|
||||||
xs_html_attr("name", "action"),
|
xs_html_attr("name", "action"),
|
||||||
xs_html_attr("value", L("Follow"))),
|
xs_html_attr("value", L("Follow"))),
|
||||||
|
xs_html_text(" "),
|
||||||
xs_html_text(L("(by URL or user@host)"))),
|
xs_html_text(L("(by URL or user@host)"))),
|
||||||
xs_html_tag("p", NULL),
|
xs_html_tag("p", NULL),
|
||||||
xs_html_tag("form",
|
xs_html_tag("form",
|
||||||
|
@ -802,10 +804,12 @@ xs_html *html_top_controls(snac *snac)
|
||||||
xs_html_attr("name", "id"),
|
xs_html_attr("name", "id"),
|
||||||
xs_html_attr("required", "required"),
|
xs_html_attr("required", "required"),
|
||||||
xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")),
|
xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")),
|
||||||
|
xs_html_text(" "),
|
||||||
xs_html_sctag("input",
|
xs_html_sctag("input",
|
||||||
xs_html_attr("type", "submit"),
|
xs_html_attr("type", "submit"),
|
||||||
xs_html_attr("name", "action"),
|
xs_html_attr("name", "action"),
|
||||||
xs_html_attr("value", L("Boost"))),
|
xs_html_attr("value", L("Boost"))),
|
||||||
|
xs_html_text(" "),
|
||||||
xs_html_text(L("(by URL)"))),
|
xs_html_text(L("(by URL)"))),
|
||||||
xs_html_tag("p", NULL)));
|
xs_html_tag("p", NULL)));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue