cryptpad/www/poll/test/index.html

62 lines
1.5 KiB
HTML
Raw Normal View History

2016-11-14 14:56:49 +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"/>
<title data-localization="poll_title">Zero Knowledge Date Picker</title>
2016-11-25 11:02:37 +00:00
<link rel="stylesheet" href="/customize/main.css" />
2016-11-14 14:56:49 +00:00
<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;
2016-11-25 11:02:37 +00:00
border: 0px;
2016-11-14 14:56:49 +00:00
}
.realtime {
display: block;
overflow: auto;
max-height: 100%;
max-width: 100%;
}
.realtime input[type="text"] {
height: 1em;
margin: 0px;
}
2016-11-25 11:02:37 +00:00
.text-cell input[type="text"] {
width: 400px;
}
2016-11-14 14:56:49 +00:00
2016-11-25 11:02:37 +00:00
/*input#title, textarea { wiidth: 50px; }*/
input[type="text"][disabled], textarea[disabled] {
background-color: transparent;
font: white;
border: 0px;
2016-11-14 14:56:49 +00:00
}
2016-11-25 11:02:37 +00:00
td label {
border: .5px solid black;
2016-11-14 14:56:49 +00:00
}
2016-11-25 11:02:37 +00:00
2016-11-14 14:56:49 +00:00
</style>
</head>
<body>
2016-11-25 11:02:37 +00:00
<button id="create-option">create option</button>
<button id="create-user">create user</button>
<button id="publish" style="display: none;">publish poll</button>
<form class="realtime">
<br />
<input type="text" id="title"><br />
<textarea rows=5 cols=50></textarea><br />
</form>