source: ComponentRegistry/branches/ComponentRegistry-2.0/ComponentRegistry/src/main/webapp/index.jsp @ 6592

Last change on this file since 6592 was 6592, checked in by Twan Goosen, 9 years ago

added piwik code

  • Property svn:executable set to *
File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<%@ page language="java" contentType="text/html; charset=UTF-8"
3         pageEncoding="UTF-8"%>
4<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
6<html
7    xmlns="http://www.w3.org/1999/xhtml" lang="en">
8    <head>
9        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
10
11        <!--  BEGIN Browser History required section -->
12        <link rel="stylesheet" type="text/css" href="history/history.css" />
13        <!--  END Browser History required section -->
14
15        <title>${title}</title>
16    </head>
17
18    <body>
19        <form action="rest/authentication" method="GET">
20            <input type="submit" value="Authentication status"/>
21        </form>
22        <form action="rest/authentication?redirect=${pageContext.request.requestURL}" method="POST">
23            <input type="submit" value="Log in"/>
24        </form>
25           
26        <!-- Piwik -->
27        <script type="text/javascript">
28          var _paq = _paq || [];
29          _paq.push(['trackPageView']);
30          _paq.push(['enableLinkTracking']);
31          (function() {
32            var u="//stats.clarin.eu/";
33            _paq.push(['setTrackerUrl', u+'piwik.php']);
34            _paq.push(['setSiteId', 17]);
35            var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
36            g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
37          })();
38        </script>
39        <noscript><p><img src="//stats.clarin.eu/piwik.php?idsite=17" style="border:0;" alt="" /></p></noscript>
40        <!-- End Piwik Code -->
41           
42    </body>
43</html>
Note: See TracBrowser for help on using the repository browser.