blob: 08905072e93138959ef5310b33a7da9e8358b036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
$def with (wiz_form, text, step, next_step)
<h1>Step number $step</h1>
$text
<form action="/wizard/$next_step" method="POST">
$:wiz_form.render()
</form>
<!-- a href=/wizard/$next_step>Next ($next_step)</a-->
|