pkg/page/example/multi-form.html (20 lines of code) (raw):
<!DOCTYPE html>
<html>
<head>
<title>Example Login Page</title>
</head>
<body>
<form id="form_a">
<input name="a1" value="red"/>
</form>
<form action="/form_b">
<input type="hidden" name="b1" value="rock"/>
<input type="text" name="b2" value="paper"/>
<input type="submit" value="submit"/>
</form>
<form action="/form_c" id="c">
<input type="hidden" name="c1" value="now"/>
<input type="submit" value="submit"/>
</form>
</body>
</html>