summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Thomson <connor@mail.gnufault.org>2026-09-20 18:18:11 +0000
committerConnor Thomson <connor@mail.gnufault.org>2026-09-20 18:18:11 +0000
commit1177a625e825766c7727b254bc72718fd88e8145 (patch)
tree5bb4a746d1e7510e755173ce0ad446ed69c52f9e
parenta72efbbb068341f022bdad232d8c9502b832750b (diff)
Update master to https://gnufault.org
-rwxr-xr-xcss/desktop/button.css3
-rwxr-xr-xcss/desktop/header.css9
-rwxr-xr-xhtml/header.html2
-rwxr-xr-ximages/logos/logo.gifbin585 -> 0 bytes
-rwxr-xr-x[l---------]signin/index.php30
-rwxr-xr-xsignup/content.html12
-rwxr-xr-xtuxanci-archive/content.html22
-rw-r--r--tuxanci-archive/files/tuxanci-0.05.tar.bz2bin0 -> 1177328 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.06.tar.bz2bin0 -> 1179459 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.07.tar.bz2bin0 -> 1182820 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.08.tar.bz2bin0 -> 1329214 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.09.tar.bz2bin0 -> 1583275 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.10.tar.bz2bin0 -> 1584024 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.11.tar.bz2bin0 -> 1589102 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.12.tar.bz2bin0 -> 1564358 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.14.tar.bz2bin0 -> 1576156 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.15.tar.bz2bin0 -> 2716472 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.17.tar.bz2bin0 -> 2913197 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.18rc1.tar.bz2bin0 -> 3146650 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.18rc2.tar.bz2bin0 -> 3146646 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.20.0.tar.bz2bin0 -> 5567514 bytes
-rw-r--r--tuxanci-archive/files/tuxanci-0.21.0.tar.bz2bin0 -> 4665025 bytes
l---------tuxanci-archive/index.php1
23 files changed, 64 insertions, 15 deletions
diff --git a/css/desktop/button.css b/css/desktop/button.css
index 9164f93..c5f96e5 100755
--- a/css/desktop/button.css
+++ b/css/desktop/button.css
@@ -17,7 +17,8 @@
*/
.button {
- background-color: #ffffff;
+ background-color: white;
+ color: black;
border: 1px solid #98A5B0;
border-radius: 3px;
padding: 1px 3px 1px 3px;
diff --git a/css/desktop/header.css b/css/desktop/header.css
index 7b72c7c..bdd5128 100755
--- a/css/desktop/header.css
+++ b/css/desktop/header.css
@@ -23,6 +23,11 @@
border-radius: 9px 9px 0 0;
}
+.header a {
+ text-decoration: none;
+ color: white;
+}
+
.header .banner {
height: 80px;
position: relative;
@@ -38,7 +43,3 @@
top: 50%;
transform: translateY(-50%);
}
-
-.header .banner a {
- text-decoration: none;
-}
diff --git a/html/header.html b/html/header.html
index dccb0f3..65e2486 100755
--- a/html/header.html
+++ b/html/header.html
@@ -23,7 +23,7 @@
<img src="/images/logos/taya.gif">
</div>
<div class="logo">
- <img src="/images/logos/logo.gif">
+ <h1>GNUfault.org</h1>
</div>
</div>
</a>
diff --git a/images/logos/logo.gif b/images/logos/logo.gif
deleted file mode 100755
index 651f716..0000000
--- a/images/logos/logo.gif
+++ /dev/null
Binary files differ
diff --git a/signin/index.php b/signin/index.php
index 1876f97..cdf976d 120000..100755
--- a/signin/index.php
+++ b/signin/index.php
@@ -1 +1,29 @@
-../php/index.php \ No newline at end of file
+<?php
+/*
+ * GNUfault.org - GNUfault's website
+ * Copyright (C) 2026 Connor Thomson
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+define('ROOT', rtrim($_SERVER['DOCUMENT_ROOT'], '/') . '/');
+
+require_once ROOT . '/php/render.php';
+
+$path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
+$file = rtrim($path, '/') . '/content.html';
+
+render_content(ROOT . $file);
+
+?>
diff --git a/signup/content.html b/signup/content.html
index 83c9fe7..9b681c5 100755
--- a/signup/content.html
+++ b/signup/content.html
@@ -25,21 +25,17 @@
<label for="user">Username:</label>
<input class="input" type="text" id="username" name="username" required>
</div>
-
+ <div class="group">
+ <label for="email">Email:</label>
+ <input class="input" type="email" id="email" name="email" required>
+ </div>
<div class="group">
<label for="password">Password:</label>
<input class="input" type="password" id="password" name="password" required>
</div>
-
<div class="group">
<label for="confirmpassword">Confirm password:</label>
<input class="input" type="password" id="confirmpassword" name="confirmpassword" required>
</div>
-
- <div class="group">
- <label for="email">Email:</label>
- <input class="input" type="email" id="email" name="email" required>
- </div>
-
<button class="button" type="submit">Send</button>
</form>
diff --git a/tuxanci-archive/content.html b/tuxanci-archive/content.html
new file mode 100755
index 0000000..79af5bb
--- /dev/null
+++ b/tuxanci-archive/content.html
@@ -0,0 +1,22 @@
+<!-- Created on 2026-09-19 19:07:27 -->
+<h2>Tuxánci Archive</h2>
+<p>Published on 2026-09-19 at 02:07:27 UTC</p>
+<hr>
+<p>Here are all of the old Tuxánci versions I have from 2007 to 2008.</p>
+<p>Some of the tarballs may be broken so please email me at &lt;<a href="mailto:noreply@gnufault.org">connor@gnufault.org</a>&gt; and I will fix them.</p>
+<p>These are licensed under the GNU General Public License version 2.0 only.</p>
+<a href=files/tuxanci-0.05.tar.bz2>Tuxánci v0.05</a><br>
+<a href=files/tuxanci-0.06.tar.bz2>Tuxánci v0.06</a><br>
+<a href=files/tuxanci-0.07.tar.bz2>Tuxánci v0.07</a><br>
+<a href=files/tuxanci-0.08.tar.bz2>Tuxánci v0.08</a><br>
+<a href=files/tuxanci-0.09.tar.bz2>Tuxánci v0.09</a><br>
+<a href=files/tuxanci-0.10.tar.bz2>Tuxánci v0.10</a><br>
+<a href=files/tuxanci-0.11.tar.bz2>Tuxánci v0.11</a><br>
+<a href=files/tuxanci-0.12.tar.bz2>Tuxánci v0.12</a><br>
+<a href=files/tuxanci-0.14.tar.bz2>Tuxánci v0.14</a><br>
+<a href=files/tuxanci-0.15.tar.bz2>Tuxánci v0.15</a><br>
+<a href=files/tuxanci-0.17.tar.bz2>Tuxánci v0.17</a><br>
+<a href=files/tuxanci-0.18rc1.tar.bz2>Tuxánci v0.18rc1</a><br>
+<a href=files/tuxanci-0.18rc2.tar.bz2>Tuxánci v0.18rc2</a><br>
+<a href=files/tuxanci-0.20.0.tar.bz2>Tuxánci v0.20.0</a><br>
+<a href=files/tuxanci-0.21.0.tar.bz2>Tuxánci v0.21.0</a><br>
diff --git a/tuxanci-archive/files/tuxanci-0.05.tar.bz2 b/tuxanci-archive/files/tuxanci-0.05.tar.bz2
new file mode 100644
index 0000000..60dfdc6
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.05.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.06.tar.bz2 b/tuxanci-archive/files/tuxanci-0.06.tar.bz2
new file mode 100644
index 0000000..129fede
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.06.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.07.tar.bz2 b/tuxanci-archive/files/tuxanci-0.07.tar.bz2
new file mode 100644
index 0000000..509b5e3
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.07.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.08.tar.bz2 b/tuxanci-archive/files/tuxanci-0.08.tar.bz2
new file mode 100644
index 0000000..3c42871
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.08.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.09.tar.bz2 b/tuxanci-archive/files/tuxanci-0.09.tar.bz2
new file mode 100644
index 0000000..60096e9
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.09.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.10.tar.bz2 b/tuxanci-archive/files/tuxanci-0.10.tar.bz2
new file mode 100644
index 0000000..fb284a9
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.10.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.11.tar.bz2 b/tuxanci-archive/files/tuxanci-0.11.tar.bz2
new file mode 100644
index 0000000..a3dd189
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.11.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.12.tar.bz2 b/tuxanci-archive/files/tuxanci-0.12.tar.bz2
new file mode 100644
index 0000000..9d0abc0
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.12.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.14.tar.bz2 b/tuxanci-archive/files/tuxanci-0.14.tar.bz2
new file mode 100644
index 0000000..671cc87
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.14.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.15.tar.bz2 b/tuxanci-archive/files/tuxanci-0.15.tar.bz2
new file mode 100644
index 0000000..cf2e8ac
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.15.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.17.tar.bz2 b/tuxanci-archive/files/tuxanci-0.17.tar.bz2
new file mode 100644
index 0000000..6ba08bb
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.17.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.18rc1.tar.bz2 b/tuxanci-archive/files/tuxanci-0.18rc1.tar.bz2
new file mode 100644
index 0000000..fd7674a
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.18rc1.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.18rc2.tar.bz2 b/tuxanci-archive/files/tuxanci-0.18rc2.tar.bz2
new file mode 100644
index 0000000..06fc5f7
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.18rc2.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.20.0.tar.bz2 b/tuxanci-archive/files/tuxanci-0.20.0.tar.bz2
new file mode 100644
index 0000000..4b28dcb
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.20.0.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/files/tuxanci-0.21.0.tar.bz2 b/tuxanci-archive/files/tuxanci-0.21.0.tar.bz2
new file mode 100644
index 0000000..6f01f74
--- /dev/null
+++ b/tuxanci-archive/files/tuxanci-0.21.0.tar.bz2
Binary files differ
diff --git a/tuxanci-archive/index.php b/tuxanci-archive/index.php
new file mode 120000
index 0000000..1876f97
--- /dev/null
+++ b/tuxanci-archive/index.php
@@ -0,0 +1 @@
+../php/index.php \ No newline at end of file