diff options
-rw-r--r-- | frontend/submit.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/submit.ts b/frontend/submit.ts index 2b7a04a..bdd9720 100644 --- a/frontend/submit.ts +++ b/frontend/submit.ts @@ -39,11 +39,11 @@ export function section_submit() { Existing bangs with the same name will be overwritten. Use {{{s}}} in the URL in place of the search term. Proposals will come into effect after being approved by an administrator. - If an email address is provided, you will be informed about the status of your proposal. + If an email address is provided, you will be informed about the status of your proposal. (TODO email stuff not implemented) `), - e("div", {}, e("label", { for: "i-name" }, "Name"), name_input), + e("div", {}, e("label", { for: "i-name" }, "Website Name"), name_input), e("div", {}, e("label", { for: "i-bang" }, "Bang"), bang_input), - e("div", {}, e("label", { for: "i-url" }, "Url"), url_input), + e("div", {}, e("label", { for: "i-url" }, "Search URL"), url_input), e("div", {}, e("label", { for: "i-email" }, "Notification email (optional)"), email_input), submit_button ) @@ -63,4 +63,4 @@ async function submit_bang(submission: { bang: string, url: string, name: string if (r.ok) status("success", "Submission successful") else status("error", "Submission failed") -}
\ No newline at end of file +} |