Remove the redundant gss top-level directory.
[pithos] / war / policy.jsp
1 <%--
2
3 Copyright 2009 Electronic Business Systems Ltd.
4  
5 This file is part of GSS.
6
7 GSS is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GSS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GSS.  If not, see <http://www.gnu.org/licenses/>.
19
20 --%>
21 <%@ page language="java" contentType="text/html; charset=UTF-8"
22     pageEncoding="UTF-8"%>
23 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
24
25 <%@page import="gr.ebs.gss.server.configuration.GSSConfigurationFactory"%><html>
26 <head>
27 <title><%= GSSConfigurationFactory.getConfiguration().getString("serviceName") %> Terms and Conditions</title>
28 <link href="/pithos/gss.css" rel="stylesheet" type="text/css">
29 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
30 </head>
31 <body>
32
33 <center>
34 <form method="post" action="/pithos/policy">
35 <input type="hidden" name="user" value="<%= request.getParameter("user") %>">
36 <input type="hidden" name="queryString" value="<%= request.getQueryString() %>">
37 <h1><%= GSSConfigurationFactory.getConfiguration().getString("serviceName") %> Terms and Conditions</h1>
38 <p>Before using <%= GSSConfigurationFactory.getConfiguration().getString("serviceName") %> you must accept the service <a href='/terms' target='_blank'>Terms and Conditions</a>.
39 <p><input type="checkbox" name="accept" title="Accept terms and conditions">
40 I have read and understood the Terms &amp; Conditions mentioned herein above and agree to abide by them
41 <p><button type="submit" name="button" value="register" >Submit</button></p>
42
43 </form>
44 </center>
45
46 </body>
47 </html>