summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Pickering <Alexander.Pickering@anondomain.site90.net>2016-03-07 19:50:18 -0500
committerAlexander Pickering <Alexander.Pickering@anondomain.site90.net>2016-03-07 19:50:18 -0500
commit646e5b0823f92b70cbe3cf2884dd0f60b38e5638 (patch)
treef7449f48325ad336b1105f9b7ca102073a25b446
parentbf06a35066ff80e333ea68fd1b5992814ef7b007 (diff)
downloadwebpage-646e5b0823f92b70cbe3cf2884dd0f60b38e5638.tar.gz
webpage-646e5b0823f92b70cbe3cf2884dd0f60b38e5638.tar.bz2
webpage-646e5b0823f92b70cbe3cf2884dd0f60b38e5638.zip
Added parts to website
-rw-r--r--data/icons/icon_bug.pngbin0 -> 3464 bytes
-rw-r--r--data/icons/icon_donate.pngbin0 -> 2890 bytes
-rw-r--r--donate.sh6
-rw-r--r--fileparts/donate.html4
-rw-r--r--fileparts/footer.html2
-rw-r--r--fileparts/header.html9
-rw-r--r--fileparts/report.html24
-rw-r--r--report.sh6
8 files changed, 50 insertions, 1 deletions
diff --git a/data/icons/icon_bug.png b/data/icons/icon_bug.png
new file mode 100644
index 0000000..1fa81d7
--- /dev/null
+++ b/data/icons/icon_bug.png
Binary files differ
diff --git a/data/icons/icon_donate.png b/data/icons/icon_donate.png
new file mode 100644
index 0000000..d8d2c85
--- /dev/null
+++ b/data/icons/icon_donate.png
Binary files differ
diff --git a/donate.sh b/donate.sh
new file mode 100644
index 0000000..8fd9e7b
--- /dev/null
+++ b/donate.sh
@@ -0,0 +1,6 @@
+echo "Content-type: text/html"
+echo ""
+
+cat ./fileparts/header.html
+cat ./fileparts/donate.html
+cat ./fileparts/footer.html
diff --git a/fileparts/donate.html b/fileparts/donate.html
new file mode 100644
index 0000000..191377f
--- /dev/null
+++ b/fileparts/donate.html
@@ -0,0 +1,4 @@
+<id><img style="width:32px" src="data/icons/icon_donate.png" alt="donate icon"><br/></id>
+<p>
+ What? You want to give me money?! I don't need your charity! Go buy that cute girl in class/your girlfriend/your mother/your sister some chochlet with those $5.
+</p>
diff --git a/fileparts/footer.html b/fileparts/footer.html
index dbfcfe3..8751326 100644
--- a/fileparts/footer.html
+++ b/fileparts/footer.html
@@ -1,4 +1,4 @@
<id><hr><br/></id>
<id>
-Page last modified on 1/1/12 - Contact the admin at <a href="mailto:admin@cogarr.org">admin@cogarr.org</a>
+Page last modified on 3/7/12 - Contact the admin at <a href="mailto:admin@cogarr.org">admin@cogarr.org</a>
</id>
diff --git a/fileparts/header.html b/fileparts/header.html
index e3e42c3..3f05ac4 100644
--- a/fileparts/header.html
+++ b/fileparts/header.html
@@ -23,4 +23,13 @@
<div>
<a style="text-decoration:line-through" href="./quickstart.html">quickstart</a>
</div>
+<div>
+ <a href="./donate.sh">donate</a>
+</div>
+<div>
+ <a href="./report.sh">bug reporter</a>
+</div>
+<div>
+ <a href="./source/">source code</a>
+</div>
<id><hr></id>
diff --git a/fileparts/report.html b/fileparts/report.html
new file mode 100644
index 0000000..a3682a5
--- /dev/null
+++ b/fileparts/report.html
@@ -0,0 +1,24 @@
+<id><img style="width:32px" src="data/icons/icon_bug.png" alt="bug icon"><br/></id>
+<p>
+ <id>
+ <form action="./report.sh" method="post">
+ <label>Short description of the bug
+ <input type="text" name="sname">
+ <br><hr>
+ <label>Detailed description of the bug
+ <textarea name="lname"></textarea>
+ <br><hr>
+ How bad is the bug?<br>
+ <label>Minor
+ <input type="radio" name="severity" text="1" checked><br>
+ <label>Effects game
+ <input type="radio" name="severity" text="2"><br>
+ <Label>Breaks game
+ <input type="radio" name="severity" text="3"><br>
+ <label>Severe
+ <input type="radio" name="severity" text="4"><br>
+ <hr>
+ <input type="submit" text="Send"><br>
+ </form>
+ </id>
+</p>
diff --git a/report.sh b/report.sh
new file mode 100644
index 0000000..597f574
--- /dev/null
+++ b/report.sh
@@ -0,0 +1,6 @@
+echo "Content-type: text/html"
+echo ""
+
+cat ./fileparts/header.html
+cat ./fileparts/report.html
+cat ./fileparts/footer.html