aboutsummaryrefslogtreecommitdiff
path: root/frontend/submit.ts
diff options
context:
space:
mode:
authorLia Lenckowski <lialenck@protonmail.com>2023-08-07 21:16:28 +0200
committerLia Lenckowski <lialenck@protonmail.com>2023-08-07 21:16:28 +0200
commit38c834d671d60bcbe8f0931cdb41dd325f1004d6 (patch)
treed4e10640754a897d713c0567c646aaf80e5c5c2f /frontend/submit.ts
parent6e73d741c828c0e12c3ba1e1270d8b3c4d3182f0 (diff)
downloadfastbangs-38c834d671d60bcbe8f0931cdb41dd325f1004d6.tar
fastbangs-38c834d671d60bcbe8f0931cdb41dd325f1004d6.tar.bz2
fastbangs-38c834d671d60bcbe8f0931cdb41dd325f1004d6.tar.zst
static frontend changes
Diffstat (limited to 'frontend/submit.ts')
-rw-r--r--frontend/submit.ts10
1 files changed, 6 insertions, 4 deletions
diff --git a/frontend/submit.ts b/frontend/submit.ts
index bdd9720..a380998 100644
--- a/frontend/submit.ts
+++ b/frontend/submit.ts
@@ -41,10 +41,12 @@ export function section_submit() {
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. (TODO email stuff not implemented)
`),
- 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" }, "Search URL"), url_input),
- e("div", {}, e("label", { for: "i-email" }, "Notification email (optional)"), email_input),
+ e("table", {},
+ e("tr", {}, e("td", {}, e("label", {for: "i-name" }, "Website Name:" )), e("td", {}, name_input )),
+ e("tr", {}, e("td", {}, e("label", {for: "i-bang" }, "Bang:" )), e("td", {}, bang_input )),
+ e("tr", {}, e("td", {}, e("label", {for: "i-url" }, "Search URL:" )), e("td", {}, url_input )),
+ e("tr", {}, e("td", {}, e("label", {for: "i-email"}, "Notification email (optional):")), e("td", {}, email_input))
+ ),
submit_button
)
}