aboutsummaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
Diffstat (limited to 'app/views')
-rw-r--r--app/views/pages/privacy.scala.html15
-rw-r--r--app/views/pages/terms.scala.html16
-rw-r--r--app/views/templates/main.scala.html4
3 files changed, 33 insertions, 2 deletions
diff --git a/app/views/pages/privacy.scala.html b/app/views/pages/privacy.scala.html
new file mode 100644
index 0000000..dd6898a
--- /dev/null
+++ b/app/views/pages/privacy.scala.html
@@ -0,0 +1,15 @@
1@()(implicit request: AuthRequest[AnyContent], flash: Flash, token: play.filters.csrf.CSRF.Token)
2
3@templates.ebe("Privacy policy")(request.account) {
4
5 <div class="pure-g">
6 <div class="pure-u-1 pure-u-lg-1-2 centered">
7 <h2>Privacy policy</h2>
8 <ul>
9 <li>We read your passwords.</li>
10 <li>But we do not use Google Analytics or any third-party nasty thing.</li>
11 </ul>
12 </div>
13 </div>
14
15}
diff --git a/app/views/pages/terms.scala.html b/app/views/pages/terms.scala.html
new file mode 100644
index 0000000..3ccadc7
--- /dev/null
+++ b/app/views/pages/terms.scala.html
@@ -0,0 +1,16 @@
1@()(implicit request: AuthRequest[AnyContent], flash: Flash, token: play.filters.csrf.CSRF.Token)
2
3@templates.ebe("Terms of use")(request.account) {
4
5 <div class="pure-g">
6 <div class="pure-u-1 pure-u-lg-1-2 centered">
7 <h2>Terms of use</h2>
8 <ul>
9 <li>Do not use this application.</li>
10 <li>You should not be reading this.</li>
11 <li>Close this window now.</li>
12 </ul>
13 </div>
14 </div>
15
16}
diff --git a/app/views/templates/main.scala.html b/app/views/templates/main.scala.html
index 5ec9da2..dc71264 100644
--- a/app/views/templates/main.scala.html
+++ b/app/views/templates/main.scala.html
@@ -60,9 +60,9 @@
60 <span class="copyright">&copy; @logo Inc. All rights reserved.</span> 60 <span class="copyright">&copy; @logo Inc. All rights reserved.</span>
61 61
62 <span class="footer-links"> 62 <span class="footer-links">
63 <a href="@routes.Application.index()">Terms of use</a> 63 <a href="@routes.Application.terms()">Terms of use</a>
64 - 64 -
65 <a href="@routes.Application.index()">Privacy policy</a> 65 <a href="@routes.Application.privacy()">Privacy policy</a>
66 </span> 66 </span>
67 </footer> 67 </footer>
68 68