diff options
| author | default <nobody@localhost> | 2024-10-29 20:22:49 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2024-10-29 20:22:49 +0100 |
| commit | 6a7881ec850f0f79eb7cd0f201375390eac627a6 (patch) | |
| tree | 0cba22a787bce27b996813cf122a9f099ecfeeb5 /html.c | |
| parent | c10449364b5ee57bc473a31b0daf6c8de9543f60 (diff) | |
Set some HTML url fields to be type 'url'.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -355,7 +355,7 @@ xs_html *html_note(snac *user, const char *summary, xs_html_tag("p", NULL), xs_html_text(L("Reply to (URL): ")), xs_html_sctag("input", - xs_html_attr("type", "text"), + xs_html_attr("type", "url"), xs_html_attr("name", "in_reply_to"), xs_html_attr("placeholder", "Optional URL to reply to"))); @@ -959,7 +959,7 @@ xs_html *html_top_controls(snac *snac) xs_html_attr("method", "post"), xs_html_attr("action", ops_action), xs_html_sctag("input", - xs_html_attr("type", "text"), + xs_html_attr("type", "url"), xs_html_attr("name", "id"), xs_html_attr("required", "required"), xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")), |