ok I like writing the legal stuff tho

This commit is contained in:
Jack Eilles 2023-12-29 20:28:24 +00:00
parent c4f1e0f531
commit 888fbacb86
3 changed files with 19 additions and 2 deletions

View file

@ -114,7 +114,7 @@ def privacy():
@app.route('/faq')
def faq():
return "placeholder"
return render_template('faq.html')
@app.route('/contact')
def contact():

18
app/templates/faq.html Normal file
View file

@ -0,0 +1,18 @@
{% extends 'base.html' %}
{% block content %}
<h1>FAQ</h1>
<h3>What is this?</h3>
<p>Check <a href="about">about</a>.</p>
<h3>Who are you?</h3>
<p>I'm Jack Eilles, the owner, developer and overall <a href="https://en.wikipedia.org/wiki/Benevolent_dictator_for_life">BDFL</a> of xygt.cc</p>
<h3>Help! I forgot my password!</h3>
<p>If you can't find your IDPass, check your <a href="dashboard">dashboard</a>. You can reset it from there.</p>
<p>If you can't remember your regular password for the site, you're on your own. Glhf.</p>
<h3>What is this licensed under?</h3>
<p>I decided to put it under the MIT License as it provides the most freedom.</p>
<h3>Do you work with the government?</h3>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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 @ <a href="transparency/public">here</a> with sensitive information omitted.</p>
{% endblock %}

View file

@ -1,4 +1,3 @@
import os
from pymongo import MongoClient
import random