blob: f53b9ad5b15612222bbd9abceb5d15f043a9ecac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
</head>
<body>
<form method="POST" action="./api/game">
<div class="form_line">
<label name="authentication_key">authentication_key</label>
<input type="text" name="authentication_key" value="azertyuiop" />
</div>
<div class="form_line">
<label name="parameters">parameters</label>
<textarea rows="10" cols="80" name="parameters">
{ "longpollingduration" : "60", "nbusersthreshold" : "2", "questiontimeframe" : "10", "nbquestions" : "20", "flushusertable" : "true" }
</textarea>
</div>
<div class="form_line">
<input type="submit" />
</div>
</form>
</body>
</html>
|