about summary refs log tree commit diff stats
path: root/signup.html
diff options
context:
space:
mode:
Diffstat (limited to 'signup.html')
-rw-r--r--signup.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/signup.html b/signup.html
new file mode 100644
index 0000000..1250f1f
--- /dev/null
+++ b/signup.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.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" />
+        <title>Tilde Institute :: Sign Up</title>
+        <link rel="stylesheet" href="tilde.css" type="text/css"/>
+        <link rel="icon" type="image/png" href="icon.png"/>
+</head>
+<body>
+<div id="container">
+	<div id="logo">
+        <img src="logo.png" alt="" /><br />
+		<div id="logobyline">
+			of OpenBSD Education
+		</div>
+	</div>         
+	<div id="navigation">
+		<a href="http://tilde.institute">News</a> :: <a href="signup.html">Sign Up</a> :: <a href="irc.html">IRC</a> :: <a href="start.html">Quick-Start Guide</a> :: <a href="coc.html">Code of Conduct</a> :: <a href="https://tilde.zone/@tildeinstitute">Mastodon</a>
+	</div>
+	<div id="content">
+		<br /><br /><br />
+		<form action="submit.php">
+			&nbsp;&nbsp;&nbsp;&nbsp;<h3>Desired Username:</h3><br />
+			<input type="text" size="32" name="username" /><br />
+			&nbsp;&nbsp;&nbsp;&nbsp;<h3>Your Email Address:</h3><br />
+			<input type="text" size="32" name="email" /><br />
+			&nbsp;&nbsp;&nbsp;&nbsp;<h3>What interests you about the Tilde Institute?</h3><br />
+			<input type="text" size="32" name="interest" /><br />
+			&nbsp;&nbsp;&nbsp;&nbsp;<h3>Paste Your SSH Key:</h3><br />
+			<input type="text" size="32" name="sshkey" /><br /><br />
+			<input type="submit" value="Submit" />
+		</form>
+	</div>
+</div>
+</body>
+</html>
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213