summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/terms.html
blob: a918dcf404995caab466c755b08846f4665c2ce6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{% extends 'base.html' %}

{% block title %}Terms{% endblock %}

{% block content %}

<div class="terms-grid">
    <div class="terms-grid-item">
        <article class="terms-block">
            <header>
                <h1>NFSW</h1>
            </header>

            <section class="terms">
                <header>
                    <h1>Heads up!</h1>
                </header>

                <p>NFSW will expose you to content that may be considered
                    unpalatable, offensive, rude, or crass.</p>

                <p>In no event unless required by applicable law will
                    Santa be liable to you for damages, including any
                    general, special, psychological, incidental or
                    consequential damages arising out of playing NFSW,
                    even if he is aware of the possibility of such
                    damages.</p>

                <p>Santa hopes to take the game offline on the
                20<sup>th</sup> January 2020.</p>

                <div class="lastupdated">
                    <p>Last Updated on the 19<sup>th</sup> January 2020</p>
                </div>
            </section>

            <section class="privacy">
                <header>
                    <h1>Santa will be watching you</h1>
                </header>

                <p>All your interactions with NFSW game or your &ldquo;game
                    state&rdquo; will be stashed in a temporary cache.</p>

                <p>The game server will also log your IP address
                    automatically each time you communicate with
                    it.</p>

                <p>Any game data attributable to you might be stored
                    on the game server until the end of the
                    20<sup>th</sup> January 2020.</p>

                <p>Santa might indefinitely keep a record of your user
                name, your password hash, whether you read and agreed
                to this legal gobbledygook, and your last login date
                time.</p>

                <div class="lastupdated">
                    <p>Last Updated on the 19<sup>th</sup> January 2020</p>
                </div>
            </section>

            <form class="agree" method="post">
                <div class="form-group agree">
                    <label for="agree">
                        <input type="checkbox" id="agree"
                               name="agree"
                               class="agree" value="1">
                        I was made aware that the game might offend me
                        &amp; understand that Santa will me watching
                        my game.
                    </label>
                </div>

                <div class="button-group">
                    <input type="submit" value="Start NFSW!">
                </div>
            </form>
        </article>
    </div>
</div>


{% endblock %}

{% block css %}
<link rel="stylesheet" href="{{ url_for('static', filename='terms.css') }}">
{% endblock %}