diff --git a/app/routes.py b/app/routes.py index e411322..882a80e 100644 --- a/app/routes.py +++ b/app/routes.py @@ -114,7 +114,7 @@ def privacy(): @app.route('/faq') def faq(): - return "placeholder" + return render_template('faq.html') @app.route('/contact') def contact(): diff --git a/app/templates/faq.html b/app/templates/faq.html new file mode 100644 index 0000000..8c4e4fc --- /dev/null +++ b/app/templates/faq.html @@ -0,0 +1,18 @@ +{% extends 'base.html' %} +{% block content %} +

FAQ

+

What is this?

+

Check about.

+

Who are you?

+

I'm Jack Eilles, the owner, developer and overall BDFL of xygt.cc

+

Help! I forgot my password!

+

If you can't find your IDPass, check your dashboard. You can reset it from there.

+

If you can't remember your regular password for the site, you're on your own. Glhf.

+

What is this licensed under?

+

I decided to put it under the MIT License as it provides the most freedom.

+

Do you work with the government?

+

In the unlikely event that xygt.cc is given a request for information, we will provide as much information as possible without directly identifying the person behind the data requested.

+

Due to the nature of xygt.cc's privacy policy, we will not provide any extra information about our users unless we are served with a legal order enforcable within its juristiction. In that case, extra logging will be enabled sitewide to collect data.

+

I encourage anyone to submit a request via E-Mail to me to take down any illegal activity being conducted on this site, just know I may not be able to provide all information required without a legal order.

+

Per GDPR / UK DPA, I am willing to respond to FOI requests, as well as the orders mentioned above. All requests will be publicly available @ here with sensitive information omitted.

+{% endblock %} \ No newline at end of file diff --git a/config.py b/config.py index 4683608..b70c160 100644 --- a/config.py +++ b/config.py @@ -1,4 +1,3 @@ -import os from pymongo import MongoClient import random