diff options
Diffstat (limited to 'templates/web/base')
-rw-r--r-- | templates/web/base/report/new/notes.html | 9 | ||||
-rwxr-xr-x | templates/web/base/static/privacy.html | 49 |
2 files changed, 52 insertions, 6 deletions
diff --git a/templates/web/base/report/new/notes.html b/templates/web/base/report/new/notes.html index 68408acc7..8d55adc6e 100644 --- a/templates/web/base/report/new/notes.html +++ b/templates/web/base/report/new/notes.html @@ -1,11 +1,8 @@ -<p style="clear:both">[% loc("Please note:") %]</p> +<p>[% loc("Please note:") %]</p> -<ul> - - <li>[% loc("We will only use your personal information in accordance with our <a href=\"/faq#privacy\">privacy policy.</a>") %]</li> +<ul class="plain-list"> + <li>[% loc("We will only use your personal information in accordance with our <a href=\"/privacy\">privacy policy.</a>") %]</li> <li>[% loc("Please be polite, concise and to the point.") %]</li> <li>[% loc("Please do not be abusive — abusing your council devalues the service for all users.") %]</li> <li>[% loc("Writing your message entirely in block capitals makes it hard to read, as does a lack of punctuation.") %]</li> - <li>[% loc("Remember that FixMyStreet is primarily for reporting physical problems that can be fixed. If your problem is not appropriate for submission via this site remember that you can contact your council directly using their own website.") %]</li> - </ul> diff --git a/templates/web/base/static/privacy.html b/templates/web/base/static/privacy.html new file mode 100755 index 000000000..79e11b03d --- /dev/null +++ b/templates/web/base/static/privacy.html @@ -0,0 +1,49 @@ +[% INCLUDE 'header.html', + title = loc('Frequently Asked Questions'), + bodyclass = 'twothirdswidthpage' %] + +<div class="sticky-sidebar"> + <aside> + <ul class="plain-list"> + <li><a href="/faq">Frequently Asked Questions</a></li> + <li><a href="/faq#practical">Practical Questions</a></li> + <li><a href="/faq#organisation">Organisation Questions</a></li> + <li><strong>Privacy and cookies</strong></li> + <li><a href="/contact">Contact [% c.cobrand.site_title %]</a></li> + </ul> + </aside> +</div> + +<h1>Privacy, cookies, and third party services</h1> + +<p><strong>Our use of your data, cookies, and external services: what you +should know, and how to opt out if you want to.</strong></p> + +<h2>Privacy</h2> + + <dl> + <dt>Who gets to see my personal details?</dt> + <dd>This will depend upon the installation of the FixMyStreet Platform, +who should create their own <code>static/privacy.html</code> template in their +cobrand directory to replace this default. In normal cases, your details will +be passed to the people responsible for dealing with your report, and no-one +else.</dd> + + <dt>What will you do with my personal details?</dt> + <dd>Another question hopefully answered by the installation.</dd> + </dl> + +<h2>Cookies</h2> + +<p>To make our service easier or more useful, we sometimes place small data +files on your computer or mobile phone, known as cookies; many websites do +this. We use this information to, for example, remember you have logged in so +you don't need to do that on every page. Below, we list the cookies and +services that this site can use. + +<table cellpadding=5> +<tr align="left"><th scope="col">Name</th><th scope="col">Typical Content</th><th scope="col">Expires</th></tr> +<tr><td>fixmystreet_app_session</td><td nowrap>A random unique identifier</td><td>When browser is closed, or four weeks if “Keep me signed in” is ticked</td></tr> +</table> + +[% INCLUDE 'footer.html' pagefooter = 'yes' %] |