summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/terms.html
blob: d24c481d4edaf508b9ed3353594e43b16ba0a9b9 (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
{% 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
                    copyright holder be liable to you for damages, including
                    any general, special, psychological, incidental or
                    consequential damages arising out of playing NFSW,
                    even if the holder has been advised or is aware of the
                    possibility of such damages.</p>

                <div class="lastupdated">
                    <p>Last Updated on the 21st October 2019</p>
                </div>
            </section>

            <section class="privacy">
                <header>
                    <h1>Privacy Policy</h1>
                </header>

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

                <p>Data in the temporary cache attributable to you may be
                    removed when the game is reset or when game's janitor
                    decides to clean it up or when the server gets obliterated
                    on the January 2<sup>nd</sup> 2020.</p>

                <p>The game server might also log your IP address
                    automatically each time you communicate with it. Access
                    logs will be purged on the same day the server gets
                    obliterated.</p>

                <p>Lastly, remember that you're on the Internet where Privacy
                    is not a first class citizen. Tread with caution.</p>

                <div class="lastupdated">
                    <p>Last Updated on the 21st October 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 %}