-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.eco.html
27 lines (25 loc) · 906 Bytes
/
index.eco.html
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
27
<html>
<head>
</head>
<body>
<form action="/hungry" method="post">
<div style="display:none"><input type="checkbox" name="hungry" checked="checked"></div>
<div><input type="text" name="author" value="Bertus"></div>
<div><input type="submit" value="I'm hungry"></div>
</form>
<form action="/hungry?hungry" method="post">
<div><input type="text" name="author" value="Bertus"></div>
<div style="display:none"><input type="checkbox" name="hungry"></div>
<div><input type="submit" value="Naah, not hungry today"></div>
</form>
<form action="/status" method="post">
<div><input type="text" name="author" value="Bertus"></div>
<div><input type="submit" value="Status"></div>
</form>
<form action="/reset" method="post">
<div><input type="submit" value="Reset"></div>
</form>
<script>
</script>
</body>
</html>