diff options
author | Pacien TRAN-GIRARD | 2015-02-08 11:19:20 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-02-08 11:19:20 +0100 |
commit | 1dd7d1dd1a796592b4448eba878ddcae8e063407 (patch) | |
tree | 154022c304af79dc42512e7932baa5b3aef712bc /app/views/pages/terms.scala.html | |
parent | fd5ae4b50e326097194280ad05f19445531338b4 (diff) | |
download | minibay-1dd7d1dd1a796592b4448eba878ddcae8e063407.tar.gz |
Add terms of use and privacy policy static pages
Diffstat (limited to 'app/views/pages/terms.scala.html')
-rw-r--r-- | app/views/pages/terms.scala.html | 16 |
1 files changed, 16 insertions, 0 deletions
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 | } | ||