aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/index.html4
-rw-r--r--src/pages/join/index.html73
2 files changed, 1 insertions, 76 deletions
diff --git a/src/pages/index.html b/src/pages/index.html
index 231cc02..3d160b4 100644
--- a/src/pages/index.html
+++ b/src/pages/index.html
@@ -16,9 +16,7 @@ home
is welcome! :)
</p>
<p>
- If you'd like to chat about tech or video games or being queer, or if you're
- perhaps interested in accessing our <a href="/services">services</a>, you
- can <a href="/join">ask to join</a>.
+ There currently isn't a system in place for accepting new members :(
</p>
</section>
</main>
diff --git a/src/pages/join/index.html b/src/pages/join/index.html
deleted file mode 100644
index 9f5b08a..0000000
--- a/src/pages/join/index.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<!--: 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="submit">
- <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 -->