summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/terms.html
blob: 5e541e66591501aba232fb3cdde82e1a17a29dd0 (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
{% extends 'base.html' %}

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

{% block content %}
<div class="terms-block">
    <div class="msg-block">
        <div class="msg">
            <p></p>
        </div>
    </div>

    <div class="terms">
        <header>
            <h1>Terms &amp; Conditions</h1>
        </header>

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

        <p>In no event unless required by applicable law or agreed to
            in writing will the copyright holder be liable to you for
            damages, including any general, special, psychological,
            incidental or consequential damages arising out of the
            playing NFSW, even if the holder has been advised of the
            possibility of such damages.</p>
    </div>

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

        <p>All your interactions with NFSW game will be logged
           indefinitely.</p>

        <p>We may at our own discretion choose to completely purge the
           data you've created/generated by virtue of playing the
           game.</p>

    </div>

    <form class="agree" method="post">
        <div class="form-group agree">
            <label for="agree">
                <input type="checkbox" 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>
</div>
{% endblock %}