diff options
-rw-r--r-- | index.html | 6 | ||||
-rw-r--r-- | signup.html | 24 |
2 files changed, 16 insertions, 14 deletions
diff --git a/index.html b/index.html index 5b25dd9..4e6714d 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ -<!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"> +<!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; charset=utf-8" /> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>tilde.institute :: OpenBSD Education</title> <link rel="stylesheet" href="tilde.css" type="text/css"/> diff --git a/signup.html b/signup.html index 30458e2..7680166 100644 --- a/signup.html +++ b/signup.html @@ -1,7 +1,7 @@ -<!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"> +<!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; charset=utf-8" /> + <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"/> @@ -22,17 +22,19 @@ <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:</h3><br /> - <input type="text" size="32" name="username" required /><br /> - <h3>Your Email Address:</h3><br /> - <input type="email" size="32" name="email" required /><br /> - <h3>What interests you about tilde.institute?</h3><br /> - <input type="text" size="32" name="interest" /><br /> - <h3>Paste Your SSH Key:</h3><br /> - <input type="text" size="32" name="sshkey" required /><br /><br /><br /> + <h3 style="margin-bottom: 0.5em;"> Desired Username:<br /></h3> + <input type="text" size="32" name="username" /> + <h3 style="margin-bottom: 0.5em;"> Your Email Address:<br /></h3> + <input type="email" size="32" name="email" /> + <h3 style="margin-bottom: 0.5em;"> What interests you about tilde.institute?<br /></h3> + <input type="text" size="32" name="interest" /> + <h3 style="margin-bottom: 0.5em;"> Paste Your SSH Key:<br /></h3> + <input style="margin-bottom: 1.0em;" type="text" size="32" name="sshkey" /><br /> <input type="submit" value="Submit" /> </form> + </p> </div> </div> </body> |