blob: e1edb962e060a75b6625637f0ecaecc563f4cb8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<html style="background-color: {color};">
<body>
<form action="/show_errors" method="POST">
<input type="checkbox" name="show_errors" value="1">Show errors<br/>
<input type="submit" value="Send"><br/>
</form>
<form action="/div" method="POST">
Разделить
<input type="text" name="numerator"> на
<input type="text" name="denominator"><br/>
<input type="submit" value="Send"><br/>
</form>
<form action="/set_cookie/=" method="POST">
Изменить Cookies
<input type="text" name="cookie_line"><br/>
<input type="submit" value="Send"><br/>
</form>
<form action="/" method="POST">
<input type="checkbox" name="short_log" value="1">Short log<br/>
<input type="submit" value="Send"><br/>
</form>
</body>
</html>
|