summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2014-01-20 13:53:17 -0500
committerAlex Xu <alex_y_xu@yahoo.ca>2014-01-20 13:53:17 -0500
commit087e45d9bae8ffaef840e907c38e4a8402fab69b (patch)
tree17316610cbb63f491edbc6f1ae5a642fdc2d35e9 /www
parent8ccc464b0de39e7fc73b3c3e50f80f6c2452c8fe (diff)
downloadhtml5ks-087e45d9bae8ffaef840e907c38e4a8402fab69b.tar.xz
html5ks-087e45d9bae8ffaef840e907c38e4a8402fab69b.zip
Stuff.
Diffstat (limited to 'www')
-rw-r--r--www/warn.html15
-rw-r--r--www/warned.html10
2 files changed, 19 insertions, 6 deletions
diff --git a/www/warn.html b/www/warn.html
index 5d41083..5c7c898 100644
--- a/www/warn.html
+++ b/www/warn.html
@@ -6,13 +6,16 @@
<body>
<p>Okay, before we start, we need to go through a few things first.</p>
<p>If you don't know what Katawa Shoujo is, see <a href="http://www.katawa-shoujo.com/">http://www.katawa-shoujo.com/</a>, then come back.</p>
- <p>The full version of Katawa Shoujo contains adult material.<br>
- Promise that you are over <b>18 years</b> old and that you will not make the material available to persons below that age.
- </p>
+ <p>There's like, a little bit of... inappropriate content, so we have to make you promise you're over 18.</p>
+ <p>If you don't want to see any, er, explicit content, hit the appropriate checkbox at the bottom of the page.</p>
<p>Also, please don't bother the original developers on the forums or IRC about bugs in this. This is entirely unofficial and not controlled by them whatsoever.<br>
- This includes typos, graphical misplacement, downtime, and any other glitches of any sort. Bug me instead: <a href="https://bugzilla.happinessforme.com/">https://bugzilla.happinessforme.com/</a>, or use the official distribution until HTML5KS is feature-complete.
+ This includes missing features, typos, downtime, and any other glitches of any sort. Bug me instead: <a href="https://bugzilla.happinessforme.com/">https://bugzilla.happinessforme.com/</a>, or use the official distribution until HTML5KS is feature-complete.
</p>
- <p>FYI, this site sets a single anonymous cookie (warned=1) so that you won't have to keep seeing this page. It also sets localStorage to keep your settings and saves (when that's implemented). This stays on your computer and never goes anywhere. If you live in the EU, please don't sue me.</p>
- <p><a href="setcookie.html">OK? Great.</a></p>
+ <p>FYI, this site sets a single anonymous cookie (warned=1) so that you won't have to keep seeing this page. It also sets localStorage to keep your settings and saves. The latter always stays on your computer and never goes anywhere. If you live in the EU, please don't sue me.</p>
+ <form method="GET" action="warned.ngx">
+ <p><input type="checkbox" name="hdisable"><label for="hdisable">Disable adult content</label>
+ <br>
+ <input type="submit" value="Let's go!">
+ </form>
</body>
</html>
diff --git a/www/warned.html b/www/warned.html
new file mode 100644
index 0000000..5d44d7c
--- /dev/null
+++ b/www/warned.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html><head>
+<script>
+localStorage.persistent = {
+ hdisable: location.search.indexOf("hdisable=on") > -1,
+ language: location.search.search("language=.*[=,]en") > -1 ? "en" : "fr"
+};
+location.replace("./");
+</script>
+</head><body>If you're seeing this, something's gone wrong. Go back and report a bug.</body></html>