about summary refs log tree commit diff stats
path: root/submit.php
diff options
context:
space:
mode:
authorahriman <ahriman@falte.red>2019-04-23 00:10:47 +0000
committerahriman <ahriman@falte.red>2019-04-23 00:10:47 +0000
commit1a88210d94be0d197c8fc9ffdab7dfeb2af46098 (patch)
tree371215af35bd9dc5eed920535b05e0232db26288 /submit.php
parent8432755d1cfc6eafd7f26e1232411b31039dd985 (diff)
downloadsite-1a88210d94be0d197c8fc9ffdab7dfeb2af46098.tar.gz
better scaling for mobile
Diffstat (limited to 'submit.php')
-rwxr-xr-xsubmit.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/submit.php b/submit.php
index 8114ffc..bb1e2c3 100755
--- a/submit.php
+++ b/submit.php
@@ -2,6 +2,7 @@
 <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"/>
@@ -13,7 +14,7 @@
 		<div id="logobyline">
 			of OpenBSD Education
 		</div>
-	</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>
@@ -115,7 +116,7 @@ if (isset($_REQUEST["username"]) && isset($_REQUEST["email"])) {
 	    $email = $_REQUEST["email"];
 	    $interest = $_REQUEST["interest"];
 	    $sshkey = $_REQUEST["sshkey"];
-        
+
         $newuserfile = fopen("newusers.dat", "a");
 	    fwrite($newuserfile, "$username $email \"$sshkey\"\n\n");
 	    fclose($newuserfile);