about summary refs log tree commit diff stats
path: root/signup.html
blob: 163067858ab8e697f8d5220e2ec89673f4dfbaec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/1/DTD/1-strict.dtd">
<html xmlns="http://www.w3.org/1999/" lang="en" xml:lang="en">
<head>
        <meta http-equiv="Content-Type" content="text; 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"/>
</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">Sign Up</a> :: <a href="/coc">Code of Conduct</a> :: <a href="https://tilde.zone/@tildeinstitute">Mastodon</a> :: <a href="/wiki">Wiki</a> :: <a href="https://tildegit.org/institute">Git</a> :: <a href="/stats">Stats</a>
	</div>
	<div id="content">
		<br />
		<form action="submit.php">
			&nbsp;&nbsp;&nbsp;&nbsp;<h3>Desired Username:</h3><br />
			<input type="text" size="32" name="username" required /><br />
			&nbsp;&nbsp;&nbsp;&nbsp;<h3>Your Email Address:</h3><br />
			<input type="email" size="32" name="email" required /><br />
			&nbsp;&nbsp;&nbsp;&nbsp;<h3>What interests you about 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" required /><br /><br /><br />
			<input type="submit" value="Submit" />
		</form>
	</div>
</div>
</body>
</html>