aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorLia Lenckowski <lialenck@protonmail.com>2023-08-02 00:31:28 +0200
committerLia Lenckowski <lialenck@protonmail.com>2023-08-02 00:31:28 +0200
commitbe01871f267f396373801ffb97a11470c5b563ec (patch)
tree867c7e678226091e86f5bc18566ba975de11e951 /frontend
parentad2b4207d48fe19e501e0fac2c1139ce7ef4dea1 (diff)
downloadfastbangs-be01871f267f396373801ffb97a11470c5b563ec.tar
fastbangs-be01871f267f396373801ffb97a11470c5b563ec.tar.bz2
fastbangs-be01871f267f396373801ffb97a11470c5b563ec.tar.zst
change some wording
Diffstat (limited to 'frontend')
-rw-r--r--frontend/submit.ts8
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
+}