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

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

Allow CouchDB to be configured through redirect as well.

File size: 1.3 KB
RevLine 
[328]1<!DOCTYPE html>
2<html>
3    <head>
4        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5        <title>Research Facilitator Tool - CouchDB Configure</title>
6        <script type="text/javascript" src="../dojotoolkit/dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: false, isDebug: true"></script>
7        <script type="text/javascript" src="db.js"></script>
8        <link rel="stylesheet" type="text/css" href="../dojotoolkit/dijit/themes/claro/claro.css" />
9        <style>
10            label {
11                width: 200px;
12                display: inline-block;
13            }
14        </style>
15    </head>
16    <body class="claro">
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.