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

Last change on this file since 6874 was 6874, checked in by Twan Goosen, 8 years ago

Removed some deprecated stuff from index.jsp
Made index.html the default index page

  • Property svn:executable set to *
File size: 1.4 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        <title>${title}</title>
11    </head>
12
13    <body>
14        <form action="rest/authentication" method="GET">
15            <input type="submit" value="Authentication status"/>
16        </form>
17        <form action="rest/authentication?redirect=${pageContext.request.requestURL}" method="POST">
18            <input type="submit" value="Log in"/>
19        </form>
20
21<!-- Piwik -->
22<script type="text/javascript">
23  var _paq = _paq || [];
24  _paq.push(['trackPageView']);
25  _paq.push(['enableLinkTracking']);
26  (function() {
27    var u="//stats.clarin.eu/";
28    _paq.push(['setTrackerUrl', u+'piwik.php']);
29    _paq.push(['setSiteId', 17]);
30    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
31    g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
32  })();
33</script>
34<noscript><p><img src="//stats.clarin.eu/piwik.php?idsite=17" style="border:0;" alt="" /></p></noscript>
35<!-- End Piwik Code -->
36
37</body>
38</html>
Note: See TracBrowser for help on using the repository browser.