blob: 3ccadc71fb806423e7df1c2d2dc77bc907db7fbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@()(implicit request: AuthRequest[AnyContent], flash: Flash, token: play.filters.csrf.CSRF.Token)
@templates.ebe("Terms of use")(request.account) {
<div class="pure-g">
<div class="pure-u-1 pure-u-lg-1-2 centered">
<h2>Terms of use</h2>
<ul>
<li>Do not use this application.</li>
<li>You should not be reading this.</li>
<li>Close this window now.</li>
</ul>
</div>
</div>
}
|