fix / cleanup html
[mygpo.git] / mygpo / web / templates / privacy_policy.html
blob1afe0cbe02f21727b26018d80d6140ba16414734
1 {% extends "base.html" %}
2 {% load i18n %}
4 {% load menu %}
5 {% block mainmenu %}{{ "/privacy"|main_menu }}{% endblock %}
6 {% block sectionmenu %}{{ "/privacy/"|section_menu }}{% endblock %}
8 {% block title %}{% trans "Privacy Policy" %}{% endblock %}
11 {% load i18n %}
14 {% block header %}
15 <h1>gpodder.net Privacy Policy</h1>
16 {% endblock %}
19 {% block content %}
21 <h2>Which kind of Personal Data data do we process?</h2>
22 <p>
23 When registering an account on gpodder.net, we store the following information
24 about you:
25 </p>
26 <ul>
27 <li>E-Mail address</li>
28 </ul>
30 <h2>Which kind of Application Data do we process?</h2>
31 <p>
32 When using a client application with gpodder.net, we might store the following
33 application-specific data:
34 </p>
35 <ul>
36 <li>User-supplied device name and type</li>
37 <li>Per-device subscription list of podcasts</li>
38 <li>Episode actions (e.g. play, download, delete) as sent by the client</li>
39 <li>User-generated content when created inside the client application</li>
40 </ul>
41 <p>
42 Depending on the client application you use, we might only store a subset of
43 this data.
44 </p>
46 <h2>Why do we collect this data?</h2>
47 <p>
48 We need to store your e-mail address so that we can inform you about news
49 regarding the gpodder.net service. The e-mail address is also used to check
50 your identity to change the password in case of a forgotten password.
51 </p>
52 <p>
53 Your e-mail address is solely used for the purposes of contacting you in case
54 we upgrade our service, and to reset a forgotten password. We will never sell
55 your e-mail address or give it to third parties.
56 </p>
57 <p>
58 The application-specific data is collected as part of the gpodder.net service.
59 Without collection application-specific data, the web service can not be used.
60 </p>
62 <h2>How do we protect this data?</h2>
63 <p>
64 We try to protect this data as much as possible by utilizing secure coding
65 practices, and by making sure that updates to vital system packages are always
66 applied from the operating system vendor that we happen to use.
67 </p>
68 <p>
69 Passwords are stored in hashed format, which means that we cannot retrieve your
70 plaintext password from the database. Instead, when you enter your password,
71 we compare its hash with the stored hash to check its validity. When you forget
72 your password, we cannot tell you old your password, but you can set a new one.
73 </p>
74 <p>
75 Connections to the web site and API parts are protected via SSL (Secure Socket
76 Layer) HTTP connection ("HTTPS"), so that the data is not sent in plain text
77 over the network.
78 </p>
80 <h2>Code auditing</h2>
81 <p>
82 The code running this web service is open source, and can be audited by
83 independent third parties. We are grateful for any improvement suggestions,
84 and will try to integrate improvement suggestions as quickly as possible.
85 </p>
87 <h2>Contact</h2>
88 <p>
89 If you have any questions, feel free to contact us.
90 </p>
93 {% endblock %}