diff --git a/routes/__init__.py b/routes/__init__.py index 3b22c0a..4ebcd29 100644 --- a/routes/__init__.py +++ b/routes/__init__.py @@ -46,6 +46,11 @@ def about(): twitter_login_error='twitter_login_error' in request.args) +@app.route('/about/privacy') +def privacy(): + return render_template('privacy.html') + + @app.route('/login/twitter') @limiter.limit('10/minute') def twitter_login_step1(): diff --git a/templates/about.html b/templates/about.html index 828638b..97b07cd 100644 --- a/templates/about.html +++ b/templates/about.html @@ -60,18 +60,4 @@

{% endif %} - -
-

Pledge & Privacy Policy

-

Forget does not post, follow, or do anything with your account other than its job: deleting posts. For it to function, Forget needs to retrieve and store some metadata about each of your posts:

- -

No other post metadata and no post contents are stored by Forget.

-
- {% endblock %} diff --git a/templates/lib/layout.html b/templates/lib/layout.html index 6fcc228..f8e1551 100644 --- a/templates/lib/layout.html +++ b/templates/lib/layout.html @@ -36,7 +36,11 @@ {% block body %}{% endblock %}