diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-05-27 17:29:22 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-05-27 17:29:22 -0400 |
| commit | 72b848847f12de1dd3bcd628c7d24213f088d0d6 (patch) | |
| tree | e798d978f5cf60fd064d8ef5bf20140760322ac2 /src | |
| parent | acf46b01985a7f38385101fa6f99f620ddd0252d (diff) | |
join form
Diffstat (limited to 'src')
| -rw-r--r-- | src/pages/FiraCodeNerdFontMono-Regular.ttf | bin | 2647492 -> 0 bytes | |||
| -rw-r--r-- | src/pages/FiraMonoNerdFontMono-Regular.otf | bin | 0 -> 2278920 bytes | |||
| -rw-r--r-- | src/pages/join/index.html | 73 | ||||
| -rw-r--r-- | src/templates/base.html | 6 | ||||
| -rw-r--r-- | src/templates/page.html | 2 |
5 files changed, 77 insertions, 4 deletions
diff --git a/src/pages/FiraCodeNerdFontMono-Regular.ttf b/src/pages/FiraCodeNerdFontMono-Regular.ttf Binary files differdeleted file mode 100644 index 328e61d..0000000 --- a/src/pages/FiraCodeNerdFontMono-Regular.ttf +++ /dev/null diff --git a/src/pages/FiraMonoNerdFontMono-Regular.otf b/src/pages/FiraMonoNerdFontMono-Regular.otf Binary files differnew file mode 100644 index 0000000..9abf745 --- /dev/null +++ b/src/pages/FiraMonoNerdFontMono-Regular.otf diff --git a/src/pages/join/index.html b/src/pages/join/index.html new file mode 100644 index 0000000..6677f89 --- /dev/null +++ b/src/pages/join/index.html @@ -0,0 +1,73 @@ +<!--: extends page.html --> +<!--: replace title --> +join +<!--: endreplace --> + +<!--: replace extraHead --> +<style> + form { + max-width: 50%; + } + + form > label, fieldset, input[type="submit"] { + display: block; + margin-bottom: 5px; + } + + label:has(> input:invalid)::before { + color: var(--red); + content: "!"; + } + + label:has(> input:required, textarea:required)::after { + color: var(--red); + content: "*"; + } + + input, textarea { + appearance: none; + background-color: black; + border: 2px solid white; + color: white; + font-family: inherit; + } + + textarea { + font-size: inherit; + vertical-align: 0; + } + + input[type="submit"]:hover { + background-color: white; + color: white; + } +</style> +<!--: endreplace --> + +<!--: replace body --> +<main> + <form action="#" method="post"> + <header> + <h2>Join the club.</h2> + <p class="subtle">Required fields are marked with an asterisk.</p> + </header> + + <label> + Name: <input name="name" type="text" required /> + </label> + <label> + URL of your personal website: + <input name="website" type="url" /> + </label> + <label> + Tell us a bit about yourself: + <textarea name="about" required></textarea> + </label> + <label> + Enter an e-mail address: + <input name="email" type="email" required /> + </label> + <input type="submit" value="Done" /> + </form> +</main> +<!--: endreplace --> diff --git a/src/templates/base.html b/src/templates/base.html index 146a7c9..56c89fc 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -12,15 +12,15 @@ } @font-face { - font-family: 'FiraCode Nerd Font Mono'; + font-family: 'FiraMono Nerd Font Mono'; font-weight: regular; - src: url("/FiraCodeNerdFontMono-Regular.ttf"); + src: url("/FiraMonoNerdFontMono-Regular.otf"); } body { background: black; color: white; - font-family: 'FiraCode Nerd Font Mono', monospace; + font-family: 'FiraMono Nerd Font Mono', monospace; font-size: 11pt; margin-left: 15%; margin-right: 15%; diff --git a/src/templates/page.html b/src/templates/page.html index 7854a72..40024c9 100644 --- a/src/templates/page.html +++ b/src/templates/page.html @@ -13,7 +13,7 @@ <!--: replace footer --> <p> - made with <em class="heart"><3</em> by <a href="/members#rosa">rosa</a> + made with <3 by <a href="/members#rosa">rosa</a> // <a rel="external" href="https://git.eviltransgenders.club/www.eviltransgenders.club">view the source</a> </p> <!--: endreplace --> |
