source: Dev/trunk/src/client/response.html @ 532

Last change on this file since 532 was 477, checked in by hendrikvanantwerpen, 12 years ago

Quick hack to allow responding despite not being authenticated. Something like tokes need to be added.

File size: 1.2 KB
Line 
1<!DOCTYPE html>
2<html>
3    <head>
4        <title>QED - Respondent</title>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6        <link rel="stylesheet" type="text/css" href="qed-client/css/qed.css" />
7    </head>
8    <body id="rft" class="dijitReset claro light" >
9        <script type="text/javascript">
10            var dojoConfig = {
11                baseUrl: ".",
12                async: true,
13                parseOnLoad: false,
14                isDebug: true,
15                packages: [
16                    { name: "dojo", location: "dojo" },
17                    { name: "dijit", location: "dijit" },
18                    { name: "dojox", location: "dojox" },
19                    { name: "qed-client", location: "qed-client" }
20                ],
21                deps: [ "qed-client/response" ]
22            };
23        </script>
24        <script type="text/javascript" src="dojo/dojo.js"></script>
25        <div id="content" class="page" data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="region:'center'" style="width: 100%; height: 100%;">
26        </div>
27        <div id="toaster" data-dojo-type="qed-client/app/Notifications">
28        </div>
29    </body>
30</html>
Note: See TracBrowser for help on using the repository browser.