cryptpad/www/poll/index.html

115 lines
3.4 KiB
HTML
Raw Normal View History

2016-07-15 14:19:51 +00:00
<!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"/>
2016-09-15 16:35:09 +00:00
<title data-localization="poll_title">Zero Knowledge Date Picker</title>
2016-07-15 14:19:51 +00:00
<link rel="icon" type="image/png"
href="/customize/main-favicon.png"
data-main-favicon="/customize/main-favicon.png"
data-alt-favicon="/customize/alt-favicon.png"
id="favicon" />
2016-07-25 13:28:27 +00:00
<link rel="stylesheet" href="/customize/main.css" />
2016-07-15 14:19:51 +00:00
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
<script>
require.config({
waitSeconds: 60,
});
</script>
2016-07-15 14:19:51 +00:00
<style>
html, body {
width: 100;
margin-top: 1.25em;
height: auto;
}
2016-07-15 14:19:51 +00:00
#main {
margin: auto;
}
2016-07-18 17:48:24 +00:00
.clickable {
cursor: pointer;
}
#adduser, #addoption {
font-weight: bold;
}
2016-07-15 14:19:51 +00:00
</style>
</head>
<body>
<div id="main">
<div id="toolbar" class="buttons">
</div>
2016-09-22 14:09:20 +00:00
<h1 id="mainTitle">CryptPoll</h1>
2016-09-15 16:35:09 +00:00
<h2 data-localization="poll_subtitle"></h2>
2016-07-15 14:19:51 +00:00
2016-09-15 16:35:09 +00:00
<p data-localization="poll_p_save"></p>
<p data-localization="poll_p_encryption"></p>
2016-07-15 14:19:51 +00:00
<hr>
<br>
2016-07-15 14:19:51 +00:00
<form class="realtime">
<input type="text" id="title" placeholder="title"><br />
<textarea id="description" placeholder="description"></textarea>
2016-09-22 14:09:20 +00:00
<p id="howToUse" data-localization="poll_p_howtouse"></p>
2016-07-15 14:19:51 +00:00
<!-- Table markup-->
<table id="table">
<!-- Table header -->
<thead>
<tr>
<td>
2016-09-15 16:35:09 +00:00
<div id="adduser" class="clickable" data-localization="poll_addUserButton" data-localization-title="poll_addUserButtonTitle"></div>
2016-07-15 14:19:51 +00:00
</td>
</tr>
</thead>
<!-- Table footer -->
<tfoot>
<tr>
<td>
2016-09-15 16:35:09 +00:00
<div id="addoption" class="clickable" data-localization="poll_addOptionButton" data-localization-title="poll_addOptionButtonTitle"></div>
2016-07-15 14:19:51 +00:00
</td>
</tr>
</tfoot>
<!-- Table body -->
<tbody>
</tbody>
</table>
</form>
<div class="modal" id="wizard-modal">
2016-09-15 16:35:09 +00:00
<button id="close-wizard" class="button action" data-localization="poll_closeWizardButton" data-localization-title="poll_closeWizardButtonTitle"></button>
<div class="center">
<div id="modal-toolbar">
2016-09-15 16:35:09 +00:00
<button id="get-options" class="action button" data-localization="poll_wizardComputeButton"></button>
<button id="clear-table" class="action button" data-localization="poll_wizardClearButton"></button>
</div>
2016-09-15 16:35:09 +00:00
<h2 data-localization="poll_wizardDescription"></h2>
<table id="wizard-table">
<thead>
<tr>
<td>
2016-09-15 16:35:09 +00:00
<div id="adddate" class="clickable" data-localization="poll_wizardAddDateButton"></div>
</td>
</tr>
</thead>
<tfoot>
<tr>
<td>
2016-09-15 16:35:09 +00:00
<div id="addtime" class="clickable" data-localization="poll_wizardAddTimeButton"></div>
</td>
</tr>
</tfoot>
<tbody>
</tbody>
</table>
</div>
</div>