about summary refs log tree commit diff stats
path: root/signup.php
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2020-06-30 00:31:04 -0400
committerBen Morrison <ben@gbmor.dev>2020-06-30 02:19:24 -0400
commit5db8118b173d9ff0c4bc2d2c55e72967090ad991 (patch)
tree6dd25bce475286335bd3089c076b80d7b569c029 /signup.php
parent603ac04ec07b8140a147e1eafaf0e3fc6baeee68 (diff)
downloadsite-5db8118b173d9ff0c4bc2d2c55e72967090ad991.tar.gz
reducing use of php in favor of shellscript build
Diffstat (limited to 'signup.php')
-rwxr-xr-xsignup.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/signup.php b/signup.php
deleted file mode 100755
index 0f8da66..0000000
--- a/signup.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html PUBLIC
-  "-//W3C//DTD XHTML 1.1//EN"
-  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
-
-<head>
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <meta name="viewport" content="width=device-width, initial-scale=1" />
-    <title>tilde.institute :: Sign Up</title>
-    <link rel="stylesheet" href="tilde.css" type="text/css" />
-    <link rel="icon" type="image/png" href="icon.png" />
-    <?php include("_webmention.html") ?>
-</head>
-
-<body>
-    <div id="container">
-        <?php include("_header.html"); ?>
-        <div id="content" class="signup">
-	    <h1>Request an Account</h1>
-            <p>
-                If you haven't received the welcome email within 24 hours, please check your spam folder.
-            </p>
-            <p>
-                <form action="submit.php">
-                    <h3>Desired Username:<br /></h3>
-                    <input type="text" size="48" name="username" />
-                    <h3>Your Email Address:<br /></h3>
-                    <input type="email" size="48" name="email" />
-                    <h3>What interests you about
-                        tilde.institute?<br /></h3>
-                    <input type="text" size="48" name="interest" />
-                    <h3>Paste Your SSH Key in OpenSSH Format:<br /></h3>
-                    <input type="text" size="48" name="sshkey" /><br />
-                    <input type="submit" value="Submit" />
-                </form>
-            </p>
-        </div>
-    </div>
-</body>
-
-</html>