source: Dev/branches/rest-dojo-ui/client/config/index.html @ 408

Last change on this file since 408 was 408, checked in by hendrikvanantwerpen, 13 years ago

Added config/ to build. It looks like top-level JS files (like config/db.js and rft/run.js) don't use the cache correctly in a build.

File size: 1.3 KB
Line 
1<!DOCTYPE html>
2<html>
3    <head>
4        <title>Research Facilitator Tool - CouchDB Configure</title>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6        <link rel="stylesheet" type="text/css" href="../dijit/themes/claro/claro.css" />
7        <style>
8            label {
9                width: 200px;
10                display: inline-block;
11            }
12        </style>
13    </head>
14    <body class="claro">
15        <script type="text/javascript" src="../dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: false, isDebug: true"></script>
16        <script type="text/javascript" src="db.js"></script>
17        <h1>Configure CouchDB</h1>
18        <div>
19            <label for="username">Admin username</label><input type="text" id="username" data-dojo-type="dijit/form/TextBox"/><br/>
20            <label for="password">Admin password</label><input type="password" id="password" data-dojo-type="dijit/form/TextBox"/><br/>
21            <label for="reset">Full reset</label><input type="checkbox" id="reset" data-dojo-type="dijit/form/CheckBox"/><br/>
22            <button id="configure" data-dojo-type="dijit/form/Button">Configure</button><br/>
23        </div>
24        <pre id="log">Waiting for configurator to initialize...</pre>
25    </body>
26</html>
Note: See TracBrowser for help on using the repository browser.