1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0"?> <page> <title>Get Rate and Quantity of item to be purchased</title> <content> <form method="post" action="continue.#{$cocoon/continuation/id}"> <para>Enter Rate: <input type="text" name="rate"/></para> <para>Enter Quantity: <input type="text" name="qty"/></para> <input type="submit" name="submit" value="Next"/> </form> </content> </page> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <?xml version="1.0"?> <page> <title>Get Buyer Category and Delivery Option</title> <content> <form method="post" action="continue.#{$cocoon/continuation/id}"> <para>You are buying #{qty} items, at #{rate} apiece</para> <para>Please specify your category:<br/> <input type="radio" name="zone" value="A">A</input><br/> <input type="radio" name="zone" value="B">B</input><br/> <input type="radio" name="zone" value="C">C</input><br/> </para> <para>Will you be picking up the item yourself from our warehouse, or would you like it shipped?<br/> <input type="radio" name="delOpt" value="P">Pickup</input><br/> <input type="radio" name="delOpt" value="S">Shipping</input><br/> </para> <input type="submit" name="submit" value="Next"/> </form> </content> </page> |
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) | Powered by Discuz! 7.0.0 |