|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
<title data-localization="poll_title">Zero Knowledge Date Picker</title>
|
|
|
|
<link rel="stylesheet" href="/customize/main.css" />
|
|
|
|
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
|
|
|
|
<script> require.config({ waitSeconds: 60, }); </script>
|
|
|
|
<style>
|
|
|
|
html, body {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
.realtime {
|
|
|
|
display: block;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
max-height: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.realtime input[type="text"] {
|
|
|
|
height: 1em;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
.text-cell input[type="text"] {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*input#title, textarea { wiidth: 50px; }*/
|
|
|
|
|
|
|
|
input[type="text"][disabled], textarea[disabled] {
|
|
|
|
background-color: transparent;
|
|
|
|
font: white;
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
td label {
|
|
|
|
border: .5px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="toolbar"></div>
|
|
|
|
|
|
|
|
<button id="create-option">create option</button>
|
|
|
|
<button id="create-user">create user</button>
|
|
|
|
<button id="publish" style="display: none;">publish poll</button>
|
|
|
|
<button id="commit">commit</button>
|
|
|
|
|
|
|
|
|
|
|
|
<form class="realtime">
|
|
|
|
<br />
|
|
|
|
<input type="text" id="title"><br />
|
|
|
|
<textarea rows=5 cols=50 id="description"></textarea><br />
|
|
|
|
|
|
|
|
</form>
|