summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/terms.html
blob: ddfbc5d6d62dfe9f35571c8a2648bbdb00728665 (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
{% 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>Terms &amp; Conditions</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
                    the author of NFSW be liable to you for damages,
                    including any general, special, psychological,
                    incidental or consequential damages arising out of
                    playing NFSW, even if they're aware of the
                    possibility of such damages.</p>

                <p>The game will be taken offline on the
                13<sup>th</sup> January 2020.</p>

                <div class="lastupdated">
                    <p>Last Updated on the 6<sup>th</sup> November 2019</p>
                </div>
            </section>

            <section class="privacy">
                <header>
                    <h1>Privacy Policy</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
                    13<sup>th</sup> January 2020.</p>

                <p>We might indefinitely keep a record of your user
                name, your password hash, whether you agreed to the
                terms and condition and this privacy policy, and your
                last login date time.</p>

                <div class="lastupdated">
                    <p>Last Updated on the 6<sup>th</sup> November 2019</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 agree to the Terms &amp; Conditions and the Privacy
                        Policy.
                    </label>
                </div>

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


{% endblock %}

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