perkeep/server/go/camlistored/ui/index.html

45 lines
1.4 KiB
HTML

<html>
<head>
<title>Camlistored UI</title>
<script type="text/javascript" src="base64.js"></script>
<script type="text/javascript" src="Crypto.js"></script>
<script type="text/javascript" src="SHA1.js"></script>
<script src="camli.js"></script>
<script src="index.js"></script>
<script src="?camli.mode=config&cb=onConfiguration"></script>
<link rel="stylesheet" href="camli.css">
</head>
<body class="camli-ui-index">
<h1>Camlistored UI</h1>
<p class="camli-nav"
><strong>Debug:</strong>
<a href="disco.html">discovery</a> |
<a href="signing.html">signing</a> |
<a href="search.html">search</a></p>
<button id="btnNew">New</button> - create a new item or collection
<h2>Recent Objects</h2>
<ul id="recent"></ul>
<form id="formTags">
<p>
<label for="inputTag">Tag:</label>
<input id="inputTag" placeholder="tag1">
<input type="submit" id="btnTagged" value="Search"> - get tagged permanodes
</form>
<h2>Tagged Objects</h2>
<ul id="tagged"></ul>
<h2>Upload</h2>
<form method="POST" id="uploadform" enctype="multipart/form-data">
<input type="file" id="fileinput" multiple="true" name="file" disabled="true">
<input type="submit" id="filesubmit" value="Upload" disabled="true">
<input type="checkbox" name="rollsum" id="chkrollsum" value="1">
<label for="chkrollsum">Use rolling checksum for boundaries</label>
</form>
</body>
</html>